Python 标识符
标识符 :在程序中,凡是自己可以起名字的地方,都是标识符
命名规则:1)字母 数字 下划线 2)数字不能开头 3)不能是关键字 4)大小写敏感 5)见名知意
命名后从后往前赋值,把数据赋给标识符。
关键字
关键字:特殊含义的单词
improt keyword(导包)
print (keyword.kwlist)
[‘False’, ‘None’, ‘True’, ‘and’, ‘as’, ‘assert’, ‘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)比较运算符:> >= < <= == != py2(<>)可能是错误 True False
type()–检测数据类型的 id() max min
3)逻辑运算符 and-与 or-或 not-非
and or 若左侧表达式可以确定最后结果,那么右侧表达式将不被计算
4)成员运算符:in not in
5)身份运算符:is is not