首页 > 其他 > 详细

.format使用

时间:2020-01-27 16:28:21      阅读:71      评论:0      收藏:0      [点我收藏+]
>>>"{} {}".format("hello", "world")    # 不设置指定位置,按默认顺序
hello world
 
>>> "{0} {1}".format("hello", "world")  # 设置指定位置
hello world
 
>>> "{1} {0} {1}".format("hello", "world")  # 设置指定位置
world hello world

 

 

.format使用

原文:https://www.cnblogs.com/hongweijiang/p/12236143.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!