码迷,mamicode.com
首页 > 编程语言 > 详细

python学习笔记——format替换字符串

时间:2018-04-18 21:21:29      阅读:350      评论:0      收藏:0      [点我收藏+]

标签:python   自学笔记   

使用format中的值来替换用{}括起来的字段
width=int(input(‘Please enter width:‘))

price_width=10
item_width=width-price_width
header_fmt=‘{{:{}}}{{:>{}}}‘.format(item_width,price_width)##使用item_width的值替换第一个花括号结构中最中间{}内部的值,price_width同理
fmt =‘{{:{}}}{{:>{}.2f}}‘.format(item_width,price_width)
print(‘=‘width)
print(header_fmt.format(‘Item‘,‘Price‘))
print(‘-‘
width)

python学习笔记——format替换字符串

标签:python   自学笔记   

原文地址:http://blog.51cto.com/13620507/2105070

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