python关键字

python有多少关键字?

>>> import keyword
>>> keyword.kwlist
['and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 

'except', 'exec', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is',

'lambda', 'not', 'or', 'pass', 'print', 'raise', 'return', 'try', 'while', 'with', 'yield']

以上这些就是python的关键字:

1. python关键字之--'and'

  

原文地址:https://www.cnblogs.com/blogofwyl/p/4475601.html