Python format格式化函数

格式化字符串函数 str.format()
format函数可以接受无限个参数,位置可以不按顺序
'{} {}'.format('Hello','World') # 不设置指定位置,按默认顺序
# 'Hello World'
'{0} {1}'.format('Hello','World') # 设置指定位置
# 'Hello World'
'{1} {0} {1}'.format('Hello','World') # 设置指定位置
# 'World Hello World'
也可以设置参数:
# 网站名:菜鸟教程, 地址 www.runoob.com
print("网站名:{name}, 地址 {url}".format(name="菜鸟教程", url="www.runoob.com"))

# 通过字典设置参数
site = {"name": "菜鸟教程", "url": "www.runoob.com"}
print("网站名:{name}, 地址 {url}".format(**site))

# 通过列表索引设

Python format格式化函数最先出现在Python成神之路

版权声明:
作者:Alex
链接:https://www.techfm.club/p/16960.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>