格式化输出-python

Posted vxian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了格式化输出-python相关的知识,希望对你有一定的参考价值。

定义字符串变量 name,输出 我的名字叫 小明,请多多关照!

name = "小明"
print("我的名字叫 %s,请多多关照!" % name)

定义整数变量 student_no,输出 我的学号是 000001

student_no = 100123456
print("我的学号是 %06d" % student_no)

定义小数 price、weight、money,

输出 苹果单价 9.00 元/斤,购买了 5.00 斤,需要支付 45.00 元

price = 8.5
weight = 7.5
money = price * weight
print("苹果单价 %.2f 元/斤,购买了 %.3f 斤,需要支付 %.4f 元" % (price, weight, money))

定义一个小数 scale,输出 数据比例是 10.00%

scale = 0.8
print("数据比例是 %.2f%%" % (scale * 100))

以上是关于格式化输出-python的主要内容,如果未能解决你的问题,请参考以下文章

Python基本格式化输出

python 格式化输出

Python基础语法-格式化输出

Python格式化输出

Python 打印输出 Python--格式化输出%s和%d

Python格式化输出