Python程序打印所有关键字的列表

要打印所有关键字的列表,我们使用“ keyword.kwlist ”,可以在导入“ keyword ”模块后使用它,它返回当前Python版本中可用的关键字列表。

在下面的代码中,我们正在实现一个Python程序来打印所有关键字的列表

# Python程序打印所有关键字的列表

# 导入模块
import keyword

# 打印关键字
print("Python keywords are...")
print(keyword.kwlist)

输出结果

Python keywords are...
['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']