40常用字符串格式化有哪几种?
Posted zhuifeng-mayi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了40常用字符串格式化有哪几种?相关的知识,希望对你有一定的参考价值。
Python的字符串格式化常用的有三种!
第一种:最方便的
缺点:需一个个的格式化
print(‘hello %s and %s‘%(‘df‘,‘another df‘))
第二种:最好用的
优点:不需要一个个的格式化,可以利用字典的方式,缩短时间
print(‘hello %(first)s and %(second)s‘%{‘first‘:‘df‘ , ‘second‘:‘another df‘})
第三种:最先进的
优点:可读性强
print(‘hello {first} and {second}‘.format(first=‘df‘,second=‘another df‘))
以上是关于40常用字符串格式化有哪几种?的主要内容,如果未能解决你的问题,请参考以下文章