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

posted @ 2020-01-29 20:23  TPLIU  阅读(96)  评论(0)    收藏  举报