python 对象/变量 对象 Every object has an identity, a type and a value. An object's identity never changes once it has been created; you may think of it as the object's address in memory. The 'is' operator compares the identity of two objects; the id() fun…
Python的变量类型 变量可以指定不同的数据类型,这些变量可以存储整数,小数或字符. 变量赋值 Python 中的变量赋值不需要类型声明 等号(=)用来给变量赋值,等号左边为变量值,等号右边是存储在变量中的值 eg: a = b = c = 1 a, b, c = 1, 2, "john" #两个整型对象1和2的分配给变量 a 和 b,字符串对象 "john" 分配给变量 c. 标准数据类型 Number(数字) string(字符串) list(列表) t…