·在python程序中用来起名字的字符序列,如:变量名、类名、模块名等。
·标识符命名规则:
1.由大写字母、小写字母、数字、下划线、汉字组成
2.对大小写敏感(有区别),不能以数字开头,可以用下划线开头:Test和test有区别;1test错误。
3.中间不能出现空格,长度没有限制
python留着自己用的字符序列,共有35个保留字。
注意:不能拿保留字当作模块名或者变量名等。
and as assert async await break class continue def elif else except False finally for from global if import in is lambda None nonlocal not or pass raise return True try while with yield
变量:python编程中用来储存数据的最小单元,有类型、名字、值。
常量:类似数学中的常数,通常情况下,变量的值就是常量。
例如:
a = 10
name = "张三"
注释分为单行注释和多行注释
单行注释:#
多行注释:三个单引号''' 或 三个双引号"""