Python内置函数之format()
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python内置函数之format()相关的知识,希望对你有一定的参考价值。
format(value[,format_spec])
返回字符串对象。
可以用来格式化value。
>>> format(12,‘0.3f‘) #保留3位小数 ‘12.000‘ >>> ‘{2}‘.format(‘hello‘,‘i‘,‘am‘,‘tom‘) #格式化字符串 ‘am‘
还可以用来进制转化:
>>> format(3,‘b‘) #二进制转化 ‘11‘ >>> format(3,‘d‘) #十进制转化 ‘3‘ >>> format(3,‘n‘) #十进制转化 ‘3‘ >>> format(3,‘x‘) #十六进制转化 ‘3‘ >>> format(12,‘x‘) ‘c‘ >>> format(12,‘o‘) #8进制转化 ‘14‘
以上是关于Python内置函数之format()的主要内容,如果未能解决你的问题,请参考以下文章