python怎么引入变量 python如何引入变量

主机教程 建站分享 2年前 (2022-10-01) 193次浏览

文章摘要:python怎么引入变量 python如何引入变量

在python中引入变量的方法有:1.使用%字符引入;2.使用+连字符引入;3.使用format()函数引入; […]

在python中引入变量的方法有:1.使用%字符引入;2.使用+连字符引入;3.使用format()函数引入;

在python中引入变量的方法

1.使用%字符引入变量

name = 'zhangsan'

age = 25

price = 4500.225

print('my name is %s'%(name))

print('i am %d'%(age)+' years old')

print('my price is %f'%(price))

#保留指定位数小数(四舍五入)

print('my price is %.2f'%(price))

输出结果为:

my name is zhangsan

i am 25 years old

my price is 4500.225000

my price is 4500.23

2.使用+连字符引入变量

name = 'zhangsan'

print('my name is '+name)

输出结果为:

my name is zhangsan

3.使用format()函数引入变量

当变量较多时,使用'+'或者'%'引入时会比较麻烦,可以使用format函数引入。

name = 'zhangsan'

age = 25

price = 4500.225

info = 'my name is {my_name},i am {my_age} years old,my price is {my_price}'

.format(my_name=name,my_age=age,my_price=price)

print(info)

输出结果为:

my name is zhangsan,i am 25 years old,my price is 4500.225


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python怎么引入变量 python如何引入变量
文章链接:http://www.7966.org/post/11715.html
转载请注明出处

喜欢 (0)