码迷,mamicode.com
首页 > 其他好文 > 详细

4.variables

时间:2016-09-05 12:21:13      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:

 

变量在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

标签:

原文地址:http://www.cnblogs.com/bingyang-py/p/5841737.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!