python 保留字

python 保留字

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time    : 2022/5/7 16:31
# @Author  : Xiang
# @Site    : 
# @File    : keyword.py
# @Software: PyCharm
import keyword
print(keyword.kwlist)

运行结果

E:\PyCharm2021.1.3Demo\demo01\venv\Scripts\python.exe E:/PyCharm2021.1.3Demo/demo01/com/xiang/keyword.py
['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']

Process finished with exit code 0
posted @ 2022-05-07 16:51  阿向向  阅读(29)  评论(0编辑  收藏  举报