python 3.x 关键字 (保留字)

python3.x

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

查看方法:

import keyword

keyword.kwlist

原文地址:https://www.cnblogs.com/kjtt/p/8926511.html