鱼C论坛

 找回密码
 立即注册
查看: 2178|回复: 6

求该段代码的作用!

[复制链接]
发表于 2021-5-31 17:36:05 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
如题
width = int(input('Please enter width:'))

price_width = 10
item_width = width - price_width

header_fmt = '{{:{}}}{{:>{}}}'.format(item_width, price_width)
fmt = '{{:{}}}{{:>{}.2f'.format((item_width, price_width))
print('=' * width)

print(header_fmt.format('Item', 'Price'))

print('-' * width)

print(fmt.format('Apples', 0.4))
print(fmt.format('Pear', 0.5))
print(fmt.format('Cantaloupes', 1.92))
print(fmt.format('Dried Apricots (16 oz.)', 8))
print(fmt.format('Prunes (4 1bs.)', 12))

print('=' * width)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-5-31 17:56:07 From FishC Mobile | 显示全部楼层
自己运行一下不就OK
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-6-2 01:22:16 | 显示全部楼层
wp231957 发表于 2021-5-31 17:56
自己运行一下不就OK

输入格式不对,没有结果
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-6-2 09:39:34 | 显示全部楼层
废物弟弟云小舟 发表于 2021-6-2 01:22
输入格式不对,没有结果

你输入整数就行了。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-6-2 10:38:53 | 显示全部楼层


输入大于 10 的数值就行:
width = int(input('Please enter width:'))

price_width = 10
item_width = width - price_width

header_fmt = '{{:{}}}{{:>{}}}'.format(item_width, price_width)
fmt = '{{:{}}}{{:>{}.2f}}'.format(item_width, price_width)

print('=' * width)

print(header_fmt.format('Item', 'Price'))

print('-' * width)

print(fmt.format('Apples', 0.4))
print(fmt.format('Pear', 0.5))
print(fmt.format('Cantaloupes', 1.92))
print(fmt.format('Dried Apricots (16 oz.)', 8))
print(fmt.format('Prunes (4 1bs.)', 12))

print('=' * width)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-6-2 10:42:24 | 显示全部楼层
废物弟弟云小舟 发表于 2021-6-2 01:22
输入格式不对,没有结果
width = int(input('Please enter width:'))

price_width = 10
item_width = width - price_width

header_fmt = '{{:{0}}}{{:>{1}}}'.format(item_width, price_width)
fmt = '{{:{0}}}{{:>{1}.2f}}'.format(item_width, price_width)
print('=' * width)

print(header_fmt.format('Item', 'Price'))

print('-' * width)

print(fmt.format('Apples', 0.4))
print(fmt.format('Pear', 0.5))
print(fmt.format('Cantaloupes', 1.92))
print(fmt.format('Dried Apricots (16 oz.)', 8))
print(fmt.format('Prunes (4 1bs.)', 12))

print('=' * width)


'''
    Please enter width:40
    ========================================
    Item                               Price
    ----------------------------------------
    Apples                              0.40
    Pear                                0.50
    Cantaloupes                         1.92
    Dried Apricots (16 oz.)             8.00
    Prunes (4 1bs.)                    12.00
    ========================================
'''
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-6-2 13:43:32 | 显示全部楼层
先去菜鸟教程看看 str.format()的基本用法,然后理解 "{{"在这里的用处,就能明白了
# "{{ " 在format中的作用
print("{{ {} }}".format("<--- 保留一个'{' --->"))
# 先取到值(可用索引),然后在冒号后设定填充格式:{索引:[填充字符][对齐方式][宽度]}
# *<20:左对齐,总共20个字符,不够的用*号填充
print('{0:*<20}'.format('hellopython'))
# *>20:右对齐,总共20个字符,不够的用*号填充
print('{0:*>20}'.format('hellopython'))
# *^20:居中显示,总共20个字符,不够的用*号填充
print('{0:*^20}'.format('hellopython'))

输出:
hellopython*********
*********hellopython
****hellopython*****
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-15 17:38

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表