附录一:python关键字

每种编程语言都有自带的关键字,使用下面的程序可以查看python的关键字

#!/usr/bin/env python3  

import keyword  
print(keyword.kwlist)  

程序运行结果:

['False', 'None', 'True', 'and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 
'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']  
Previous Post

python编程-程序测试

Next Post

附录二:编码风格

Related Posts