Python - string formatting: % vs. .format
分享一个大牛的人工智能教程。零基础!通俗易懂!风趣幽默!希望你也加入到人工智能的队伍中来!请点击http://www.captainbed.net
.format
just seems more sophisticated in many ways. An annoying thing about %
is also how it can either take a variable or a tuple. You’d think the following would always work:
"hi there %s" % name
yet, if name
happens to be (1, 2, 3)
, it will throw a TypeError
. To guarantee that it always prints, you’d need to do
"hi there %s" % (name,) # supply the single argument as a single-item tuple
which is just ugly. .format
doesn’t have those issues. Also .format
is much cleaner looking.
还没有评论,来说两句吧...