format()
Posted jijianhu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了format()相关的知识,希望对你有一定的参考价值。
1.format() 字典方式
test = ‘I am {name},age{a}‘ #v = test.format(name = ‘alex‘,a =19) v = test.format(**{"name" : ‘alex‘,"a":19}) print(v) _____________________________ I am alex,age19
2.
test = ‘I am {0},age{0}‘ # v = test.format(name = ‘alex‘,a =19) #v = test.format(**{"name" : ‘alex‘,"a":19}) v = test.format(‘alex‘,19) print(v) ———————————— I am alex,agealex
以上是关于format()的主要内容,如果未能解决你的问题,请参考以下文章