您的位置:首页 > 编程语言 > Python开发

13.9Python基础拾遗(9):系统关键字

2018-03-22 17:23 309 查看
系统关键字不能用于标识符的命名

# 流程控制:if else elif while for continue break
# 系统常量:True False None
# 变量函数类:global def lambda class return yield pass
# 逻辑运算符:and or not in is
# 导入:from import
# 异常:try except finally raise
# 文件:with as
# 其它:del assert nonlocal  ...
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: