编程语言
首页 > 编程语言> > python保留字

python保留字

作者:互联网

image

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

标签:elif,keyword,python,global,pass,import,保留字
来源: https://www.cnblogs.com/my-blog-site/p/16183357.html