查看python中的关键字

1 import keyword
2 print(keyword.kwlist)

显示内容如下:

['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']

原文地址:https://www.cnblogs.com/bcyczhhb/p/10523911.html