python语法之变量

变量是存储数据值的容器。

(1)创建变量
Python没有用于声明变量的命令。

当您第一次为变量赋值时,它就被创建了。

x = 5
y = "John"
print(x)
print(y)

变量不需要用任何特定类型声明,甚至可以在设置后更改类型。

x = 4       # x is of type int
x = "Sally" # x is now of type str
print(x)

你可能感兴趣的:(python,python,开发语言)