search
HomeBackend DevelopmentPython TutorialHow to use Python development tool PyCharm to personalize settings

PythonPersonalized settings for the development tool PyCharm, including setting the default PyCharm parser, setting the indent character to tab, setting the IDE skin theme, etc. Please refer to it for reference

1 .Set the default PyCharm parser:

The operation is as follows:

Python–>Preferences–>Project Interpreter–>Python Interpreter Click the “+” sign to select the systemInstallationPython.

Then return to Project Interpreter and select the interpreter you just added.


2. Set the indentation character to the tab character "Tab"

File -> Default Settings -> Code Style

-> General -> Check "Use tab character"
-> Python -> Check "Use tab character"
-> Similar settings for other language codes

3. Set IDE skin theme

File -> Settings -> Appearance -> Theme -> Select "Alloy.IDEA Theme"

4. Show "line numbers" and "whitespace characters"

File -> Settings -> Editor ->General -> Appearance
-> Check "Show line numbers" and "Show whitespaces" "、"Show method separators"

How to use Python development tool PyCharm to personalize settings

##5. Settings

Editor"Color and Font" theme

File -> Settings -> Editor -> Colors & Fonts -> Scheme name -> Select "Darcula"

Note: First select "Darcula", then "Save As" and name it "qianyunlai.com", because The default theme is "read-only", and some font sizes and colors cannot be modified. You can only modify it after making a copy!

Modify the font size

File -> Settings -> Editor -> Colors & Fonts -> Font -> Size -> Set to "14"

Supplement : Modify the interface of the entire theme

How to use Python development tool PyCharm to personalize settings

How to use Python development tool PyCharm to personalize settings

Change Darcula in the picture above to Intellij

How to use Python development tool PyCharm to personalize settings

The final interface is as follows:

How to use Python development tool PyCharm to personalize settings

6. Remove the default folding

File -> Settings -> Editor -> Code Folding -> Collapse by default -> Uncheck all

7. "Code Automatic Completion" time delay setting

File -> Settings -> Editor -> Code Completion

- > Auto code completion in (ms):0
-> Autopopup in (ms):500

8. Modify the IDE shortcut key scheme

File -> Settings -> Keymap
The system comes with several shortcut key schemes, such as "defaul", "Visual Studio" in the drop-down box ", very useful when finding bugs, "NetBeans 6.5", "Default for GNOME" and other options,
Because the "Eclipse" solution is more popular and is used more personally, I finally chose it. "Eclipse".

There are still several commonly used shortcut keys that are different from those in Eclipse. In order to modify them, you must first make a copy of the Eclipse solution:

(1). Code prompt function, the default is [ Ctrl+Space], now changed to the same as Eclipse, that is, [Alt+/]

Main menu -> code -> Completion -> Basic -> is set to "Alt+/ "
Main menu -> code -> Completion -> SmartType -> is set to "Alt+Shift+/"
However, "Alt+/" is
Main menu -> code - by default > Completion -> Basic -> Cyclic Expand Word is occupied, delete it first (right-click to delete)!

(2). Close the current document. The default is [Ctrl+F4]. Now it is changed to the same as Eclipse, that is, [Ctrl+W]

Main menu -> Window -> Active Tool Window -> Close Active Tab -> Set to "Ctrl+F4";
Main menu -> Window -> Editor -> Close -> Set to "Ctrl+W";

Supplement: Show line numbers (in editor--general--show line numbers)

How to use Python development tool PyCharm to personalize settings

## Mouse wheel controls font size

How to use Python development tool PyCharm to personalize settings

PyCharm3.0 default shortcut key (translated)

PyCharm Default Keymap

1. Editing

Ctrl + Space Basic code Completion (class, method, attribute)

Ctrl + Alt + Space Quickly import any class
Ctrl + Shift + Enter Statement completion
Ctrl + P Parameter information (call parameters in the method)

Ctrl + Q Quickly view documents

F1 External documents

Shift + F1 External documents, enter the web document homepage

Ctrl + Shift + Z --> Redo Redo

Ctrl + Hover/Click the left mouse button Introduction/Enter code definition
Ctrl + F1 Display error description or warning message
Alt + Insert Automatically generate code
Ctrl + O Re-method
Ctrl + Alt + T Select
Ctrl + / Line Comment /Cancel line comment
Ctrl + Shift + / Block comment
Ctrl + W Select the added code block
Ctrl + Shift + W Return to the previous state
Ctrl + Shift + ]/[ End and start the selected code block
Alt + Enter Quick correction
Ctrl + Alt + L Code formatting
Ctrl + Alt + O Optimize import
Ctrl + Alt + I Automatic indent
Tab / Shift + Tab Indent or not indent the current line
Ctrl+X/Shift+Delete Cut the current line or selected code block to the clipboard
Ctrl+C/Ctrl+Insert Copy the current line or selected code block to the clipboard
Ctrl+V/Shift+Insert Paste from the clipboard
Ctrl + Shift + V Paste from the nearest buffer
Ctrl + D Copy selected range or line
Ctrl + Y Delete selected line
Ctrl + Shift + J Add smart line
Ctrl + Enter Intelligent line cutting
Shift + Enter Start a new line
Ctrl + Shift + U Switch between selected areas or code blocks
Ctrl + Delete Delete to the end of the character
Ctrl + Backspace Delete to the beginning of the character
Ctrl + Numpad+/- Expand/collapse code blocks (current position: function, comments, etc.)
Ctrl + shift + Numpad+/- Expand/collapse all code blocks
Ctrl + F4 Close the running tab
2. Search/Replace(Search/Replace)
F3 Next
Shift + F3 Previous
Ctrl + R Replace
Ctrl + Shift + F or hit shift twice in a row Global search {You can search for a certain string or something in the entire project, such as searching for a function name string to see how this function was used before}
Ctrl + Shift + R Global replacement
3. Running
Alt + Shift + F10 Running mode configuration
Alt + Shift + F9 Debug modeConfiguration
Shift + F10 Run
Shift + F9 Debugging
Ctrl + Shift + F10 Run editor configuration
Ctrl + Alt + R Run manage.py task
4. Debugging(Debugging)
F8 Skip
F7 Enter
Shift + F8 Exit
Alt + F9 Run cursor
Alt + F8 Verifyexpression
Ctrl + Alt + F8 Quickly verify expression
F9 Restore program
Ctrl + F8 Breakpoint switch
Ctrl + Shift + F8 View breakpoint
5. Navigation(Navigation)
Ctrl + N Jump to class
Ctrl + Shift + N Jump to the symbol

Alt + Right/Left Jump to the next or previous edited tab (code file)

Alt + Up/Down Jump to the previous or next method

F12 Return to the previous tool window
Esc Return to the editing window from the tool window
Shift + Esc Hide the running and recently running windows
Ctrl + Shift + F4 Close the actively running tab
Ctrl + G View the current line number and character symbol
Ctrl + E The current file pops up and opens the recently used file list
Ctrl+Alt+ Left/Right Back, forward

Ctrl+Shift+Backspace Navigate to the recent editing area {almost return to the last edited position}

Alt + F1 Find the current file or logo
Ctrl +B / Ctrl+Click Jump to declaration
Ctrl + Alt + B Jump to implementation
Ctrl + Shift + IView quick definition
Ctrl + Shift + BJump to type declaration

Ctrl + U jump to the parent method and parent class

Ctrl + ]/[jump to the end and start of the code block

Ctrl + F12 popup file structure
Ctrl + H type hierarchy
Ctrl + Shift + H method hierarchy
Ctrl + Alt + H call hierarchy
F2 / Shift + F2 Next , the previous highlighted error
F4 / Ctrl + EnterEdit resources, view resources
Alt + HomeDisplay navigation barF11 bookmark switch
Ctrl + Shift + F11 bookmark mnemonic switch
Ctrl + # [0-9] Jump to the identified bookmark
Shift + F11 to display the bookmark
6. SearchRelated (Usage Search)
Alt + F7/Ctrl + F7FileQueryUsage
Ctrl + Shift + F7 Highlight usage in the file
Ctrl + Alt + F7 Display usage
7. Refactoring
F5 Copy F6 Cut
Alt + Delete Safe Delete
Shift + F6 Rename
Ctrl + F6 Change Signature
Ctrl + Alt + N Inline
Ctrl + Alt + M Extraction Method
Ctrl + Alt + V Extract attributes
Ctrl + Alt + FExtract fields
Ctrl + Alt + CExtract constants
Ctrl + Alt + PExtract parameters
8. Control VCS/Local History
Ctrl + KSubmit project
Ctrl + TUpdate project
Alt + Shift + CView recent changes
Alt + BackQuote(')VCS quick popup
9. Templates (Live Templates)
Ctrl + Alt + J Use the template in the current line
Ctrl +J to insert the template
10. Basic (General)
Alt + #[0-9]Open the corresponding tool window
Ctrl + Alt + Y Synchronization
Ctrl + Shift + F12 Maximize editing switch
Alt + Shift + F Add to favorites
Alt + Shift + I Check the current file according to the configuration
Ctrl + BackQuote(') Quickly switch the current plan
Ctrl + Alt + S Open the settings page
Ctrl + Shift + AFind all actions in the editor

Ctrl + Tab to switch between windows

The above is the detailed content of How to use Python development tool PyCharm to personalize settings. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Python: Games, GUIs, and MorePython: Games, GUIs, and MoreApr 13, 2025 am 12:14 AM

Python excels in gaming and GUI development. 1) Game development uses Pygame, providing drawing, audio and other functions, which are suitable for creating 2D games. 2) GUI development can choose Tkinter or PyQt. Tkinter is simple and easy to use, PyQt has rich functions and is suitable for professional development.

Python vs. C  : Applications and Use Cases ComparedPython vs. C : Applications and Use Cases ComparedApr 12, 2025 am 12:01 AM

Python is suitable for data science, web development and automation tasks, while C is suitable for system programming, game development and embedded systems. Python is known for its simplicity and powerful ecosystem, while C is known for its high performance and underlying control capabilities.

The 2-Hour Python Plan: A Realistic ApproachThe 2-Hour Python Plan: A Realistic ApproachApr 11, 2025 am 12:04 AM

You can learn basic programming concepts and skills of Python within 2 hours. 1. Learn variables and data types, 2. Master control flow (conditional statements and loops), 3. Understand the definition and use of functions, 4. Quickly get started with Python programming through simple examples and code snippets.

Python: Exploring Its Primary ApplicationsPython: Exploring Its Primary ApplicationsApr 10, 2025 am 09:41 AM

Python is widely used in the fields of web development, data science, machine learning, automation and scripting. 1) In web development, Django and Flask frameworks simplify the development process. 2) In the fields of data science and machine learning, NumPy, Pandas, Scikit-learn and TensorFlow libraries provide strong support. 3) In terms of automation and scripting, Python is suitable for tasks such as automated testing and system management.

How Much Python Can You Learn in 2 Hours?How Much Python Can You Learn in 2 Hours?Apr 09, 2025 pm 04:33 PM

You can learn the basics of Python within two hours. 1. Learn variables and data types, 2. Master control structures such as if statements and loops, 3. Understand the definition and use of functions. These will help you start writing simple Python programs.

How to teach computer novice programming basics in project and problem-driven methods within 10 hours?How to teach computer novice programming basics in project and problem-driven methods within 10 hours?Apr 02, 2025 am 07:18 AM

How to teach computer novice programming basics within 10 hours? If you only have 10 hours to teach computer novice some programming knowledge, what would you choose to teach...

How to avoid being detected by the browser when using Fiddler Everywhere for man-in-the-middle reading?How to avoid being detected by the browser when using Fiddler Everywhere for man-in-the-middle reading?Apr 02, 2025 am 07:15 AM

How to avoid being detected when using FiddlerEverywhere for man-in-the-middle readings When you use FiddlerEverywhere...

What should I do if the '__builtin__' module is not found when loading the Pickle file in Python 3.6?What should I do if the '__builtin__' module is not found when loading the Pickle file in Python 3.6?Apr 02, 2025 am 07:12 AM

Error loading Pickle file in Python 3.6 environment: ModuleNotFoundError:Nomodulenamed...

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.