Python Day02 -关键字

查看关键字

#!/usr/bin/env python3
# -*- coding:utf-8 -*-
__author__ = "TPLIU"

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

猜你喜欢

转载自www.cnblogs.com/tpliu/p/12241195.html
今日推荐