190715 Python 内置函数之format

文章目录
  1. II. 其他
    1. 1. 一灰灰Blog: https://liuyueyi.github.io/hexblog
    2. 2. 声明
    3. 3. 扫描关注

字符串格式化函数 str.format()

1
2
3
4
>>> "{} {}".format("hello", "world")
'hello world'
>>> "{0} {1} {0}".format("hello", "world")
'hello world hello'

除了使用上面序号的方式,还可以用key的方式,如下

1
2
3
4
5
>>> "{name} haha {age}".format(name='yhh', age=20)
'yhh haha 20'

>>> "{name} haha {age}".format(**{"name": "yhh", "age": 18})
'yhh haha 20'

注意,传参为dict时,前面要加两个星号

数字格式化

1
2
>>> "{:.2f}".format(3.1415926)
'3.14'

II. 其他

1. 一灰灰Bloghttps://liuyueyi.github.io/hexblog

一灰灰的个人博客,记录所有学习和工作中的博文,欢迎大家前去逛逛

2. 声明

尽信书则不如,以上内容,纯属一家之言,因个人能力有限,难免有疏漏和错误之处,如发现bug或者有更好的建议,欢迎批评指正,不吝感激

3. 扫描关注

一灰灰blog

QrCode

# Python

评论

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×