Python Learning_Day1
变量命名规范##
1、Python允许引号内中文名,即便如此,也不建议使用中文来命名变量;
2、系统关键字不能用作变量名,具体有:
‘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’
作业
判断及原因依次为:
@abc.com 不合法 “@“为不合法字符
123ok 不合法 数字不能开头
xiaoming 不合法 空格开头
xiaoming$ 不合法 空格开头,并包含非法字符”$”
interface 不合法 使用系统关键字
sina@163.com 不合法 包含非法字符@
int 不合法 系统函数名
in 不合法 系统关键字