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

python 字符串格式化,使用f前缀

时间:2018-08-13 14:02:33      阅读:364      评论:0      收藏:0      [点我收藏+]

标签:ogg   字符串   cond   前缀   方便   redirect   nbsp   信息   索引   

格式化一般用%,但后来推荐用format

format有进步,可以用索引或者名字,但仍然没有很方便和快捷

 

# logger.debug(‘{}  {}  {}  {}  {}  {}‘.format(method,  resp.status_code, resp.elapsed.total_seconds(), resp.is_redirect, resp.text.__len__(),resp.url))
logger.debug(f‘{method} {resp.status_code} {round(resp.elapsed.total_seconds(),2):>3.2f} {resp.is_redirect} {resp.text.__len__():<8d} {resp.url}‘)

上面的改写为下面的,那么参数的位置信息立马就清晰很多。

前提是要使用python3.6以及以上版本

 

python 字符串格式化,使用f前缀

标签:ogg   字符串   cond   前缀   方便   redirect   nbsp   信息   索引   

原文地址:https://www.cnblogs.com/ydf0509/p/9467300.html

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