Python第三章:Python中的字符串和保留字

175 阅读1分钟

1.保留字

image.png

保留字就是python中的一些特殊的字符串是有特殊含义的不允许我们去使用它们进行命名现在我们来看下有多少保留字

我们可以通过代码:

import keyword
print(keyword.kwlist)

来查看有多少保留字

image.png

['False', 'None', 'True', 'peg_parser', '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']