博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
format格式化函数
阅读量:5235 次
发布时间:2019-06-14

本文共 628 字,大约阅读时间需要 2 分钟。

>>>"{} {}".format("hello", "world")    # 不设置指定位置,按默认顺序'hello world' >>> "{0} {1}".format("hello", "world")  # 设置指定位置'hello world' >>> "{1} {0} {1}".format("hello", "world")  # 设置指定位置'world hello world'
print("网站名:{name}, 地址 {url}".format(name="菜鸟教程", url="www.runoob.com")) # 通过字典设置参数site = {
"name": "菜鸟教程", "url": "www.runoob.com"}print("网站名:{name}, 地址 {url}".format(**site)) # 通过列表索引设置参数my_list = ['菜鸟教程', 'www.runoob.com']print("网站名:{0[0]}, 地址 {0[1]}".format(my_list)) # "0" 是必须的

 上例输出结果

网站名:菜鸟教程, 地址 www.runoob.com 网站名:菜鸟教程, 地址 www.runoob.com 网站名:菜鸟教程, 地址 www.runoob.com

转载于:https://www.cnblogs.com/aj-AJ/p/11165063.html

你可能感兴趣的文章