Python IDLE introduction and tips
Windows 7 64-bit, python2.7
IDLE introduction:
Is a visual GUI editor for python.
You can enter the command line by line.
Easy copy and paste operations
Common command line commands:
Import module_name:
Import module
Example: import sys
Dir ():
View the name of the module, method, and other Members.
For example, dir (sys) and dir (sys. path)
Similar operations: sys. + '\ t', sys. path. +' \ t'
Help ():
View the name and usage of the module, method, and other Members
For example, help (sys) and help (sys. path)
Enter directly:
Enter the module name and Method Name:
For example, sys, sys. path. After confirming, the module/method path or other
Input variables and attributes:
For example, sys. _ name _, str # str = 'Hello world'; the value of this variable/attribute is displayed after confirmation.
References: IDLE; Network
Postscript: if there are any mistakes or omissions, please correct them and update them if you have time.