首页 > 编程语言 > 详细

Python format

时间:2019-10-28 10:18:21      阅读:82      评论:0      收藏:0      [点我收藏+]

format()功能更强大,该函数把字符串当成一个模板,通过传入的参数进行格式化

formatter = "{} {} {} {}"
print(formatter.format(1, 2, 3, 4))
print(formatter.format("one", "two", "three", "four"))
print(formatter.format(True, False, True, False))

print(formatter.format(formatter, formatter, formatter, formatter))

输入结果
1 2 3 4
one two three four
True False True False
{} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {}

Python format

原文:https://www.cnblogs.com/dlmltao/p/11750222.html

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