Python 入门系列 —— 4. 变量基础
变量 变量常用于存储数据。 生成变量 Python 不能单独声明变量,这和其他语言是不一样的,变量的创建是在将值赋给它的那一刻才创建的。 x = 5 y = "John" print(x) print(y) 变量的类型也是不固定的,比如说,上一个时刻类型是 int,下一刻可能就是 string。 x = 4 # x is of type int x = "Sally" # x is now of type str print(x) 类型转换 如果你想强制给一个变量指定一个类型,可以使用 内置函数 转换。 x = str(3) # x will be '3' y = int(3) # y will be 3 z = float(3) # z will be 3.0 类型获取 可以通过 type() 函数获取变量的类型。 x = 5 y = "John" print(type(x)) print(type(y)) ---- output ---- <class 'int'> <class 'str'> 单双引号 string变量可以使用 ' 或者 " 来定义。 x = "John" # is the same as x = 'John' 区分大小写 变量名是区分大小写的。 a = 4 A = "Sally" 变量名 变量名可以定义的非常短 (如: x 或 y),也可以定义的非常有语义化