python 字符串格式化,使用f前缀
生活随笔
收集整理的這篇文章主要介紹了
python 字符串格式化,使用f前缀
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
格式化一般用%,但后來推薦用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}')
上面的改寫為下面的,那么參數(shù)的位置信息立馬就清晰很多。
前提是要使用python3.6以及以上版本
?
總結(jié)
以上是生活随笔為你收集整理的python 字符串格式化,使用f前缀的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 应用性能优化列表
- 下一篇: Unity3d XmlException