1、常用命令
ALT+3 : 多行注释
ALT+4 : 取消多行注释
ALT+P : 翻出上一条命令, 类似于向上的箭头
ALT+N : 翻出下一条命令, 类似于向下的箭头
CTRL+[ 、 CTRL+] 多行的代码的缩进
CTRL+F: 查找指定的字符串
ALT+F4: 关闭Windows窗口
ATL+DD: 开启代码调试功能;
ALT+M : 打开模块代码,先选中模块,就可以查看该模块的源码;
ALT+X : 进入Python Shell模式;
ALT+F+P: 打开路径浏览器,方便选择导入包进行查看、浏览;
ALT+C : 打开类浏览器,方便在模块方法体之间的切换;
F5 : 进入Python Shell调试界面;
TAB : Python Shell模式下的自动补齐功能,类似于Linux,很有用!
F1 : 翻出出Python document,查找起来非常之方便。
更多可以查看 IDLE菜单栏的Options -> Configure IDLE… -> Keys选项卡。
2.出现SyntaxError: Missing parentheses in call to ‘print’
原因:python2系列可以支持 print “xxxx” ,python3系列需要使用print(“xxx”)
3.出现NameError: name ‘reload’ is not defined
对于 Python 2.X:
import sys
reload(sys)
sys.setdefaultencoding(“utf-8”)
对于 Python 3.5.2:
import imp
imp.reload(模块名)
注意: (1)Python 3 与 Python 2 有很大的区别,其中Python 3 系统默认使用的就是utf-8编码。
(2) 所以,对于使用的是Python 3 的情况,就不需要sys.setdefaultencoding(“utf-8”)这段代码。
(3)最重要的是,Python 3 的 sys 库里面已经没有 setdefaultencoding() 函数了。
4.python中在print中使用逗号‘,’,可以使打印时的回车变为空格,而反斜杠’\’是续行的意思。如:
def lookup_person(db):
pid = raw_input('Enter ID number: ')
field = raw_input('What should you like to know?(name,age,phone)')
field = field.strip().lower()
print field.capitalize() + ':', \
db[pid][field]
5.with语句可以打开文件并将其幅值到变量上。python2.5中,with语句要导入如下模块: from future import with_statement。2.5之后的版本,with可以直接使用。