python语法基础

一、保留字

python3.5及以上版本有35个保留字(关键字):

'False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', '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'

 

上一篇:Python命名规范


下一篇:C#向并口设备发送指令以获取并口设备的状态