python 使用给定的宽度打印格式化后的价格列表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用给定的宽度打印格式化后的价格列表相关的知识,希望对你有一定的参考价值。

#coding=utf-8
# Python基础教程3-1
width = input('请输入表格的宽度:')
price_width = 10
item_width = width - price_width
header_format = '%-*s%*s'
format = '%-*s%*.2f'
print '='*width
#打印表头
print header_format %(item_width,'项目',price_width,'价格')
print '-' * width
print format % (item_width,'苹果',price_width,6.0)
print format % (item_width,'桔子',price_width,3.2)
print format % (item_width,'香蕉',price_width,2.5)
print format % (item_width,'葡萄',price_width,14.8)
print format % (item_width,'红提',price_width,15)
print format % (item_width,'西瓜',price_width,1.5)
print '='*width

以上是关于python 使用给定的宽度打印格式化后的价格列表的主要内容,如果未能解决你的问题,请参考以下文章

字符串格式化示例

编写python代码,仅打印给定列表中评估为True的表达式[关闭]

字符串格式表示实例

python作业3:购物车程序

python格式化输出

如何在 Python 中使用 Pretty Table 打印多个列表中的数据?