关键字和标识符及命名规范
关键字
就是python语言定义的、具有特殊用途的单词,通过内置函数help()查看所有关键字
>>> help()
help> keywords
Here is a list of the Python keywords. Enter any keyword to get more help.
False class from or
None continue global pass
True def if raise
and del import return
as elif in try
assert else is while
async except lambda with
await finally nonlocal yield
break for not
或者导入模块keyword查看
>>> import keyword
>>> 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']
标识符
计算机科学中最难的两件事是命名和缓存失效
就是给程序中的变量,函数、方法、类等命名的名字
标识符命名规则:
1、区分大小写
2、不能是关键字
3、不能以数字开头
4、不能包含空格、制表符、数学符号、中划线、箭头灯
标识符命名规范:
1、“见名知意”,由一个或多个有意义的单词组合而成
2、多有单词全部小写,单词之间用下划线分隔,如student_name,student_id
转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 289211569@qq.com