首页 > 代码库 > 4.variables

4.variables

 

变量在python可以是字符也可以是数字。例如:
 
x = 2
price = 2.5
word = ‘Hello‘
 
变量名在等号左边,值在右边,一旦变量被指定,就可以在程序的其他地方使用它。
在上面的例子中,我们有三个变xprice and word,
变量名中不能有空格和特殊字符。
字符变量有三种定义方法:
 
 
word = ‘Hello‘
word = "Hello"
word = ‘‘‘Hello‘‘‘
 
这取决于你的喜好,变凉定义之后是可以被替换和修改的。
 
x = 2
 
# increase x by one
x = x + 1
 
# replace x
x = 5
 
Python支持运算符+、-、/ *以及括号。变量可以使用print语句显示在屏幕上。
 
x = 5
print(x)
 
y = 3 * x
print(y)
 
# more detailed output
print("x = " + str(x))
print("y = " + str(y))
 
上面的第一个程序的输出是变量的原始值。这个str()函数将数值变量转换为文本。

4.variables