Python的字符串可以使用%来进行格式化。
a = "hello"
print("%s"%a)
#输出:hello
字符串中有多个格式化字符,后面需要用括号来传参数
a = "hello"
b = "world"
print("%s%s"%(a,b))
Python的字符串可以使用%来进行格式化。
a = "hello"
print("%s"%a)
#输出:hello
字符串中有多个格式化字符,后面需要用括号来传参数
a = "hello"
b = "world"
print("%s%s"%(a,b))
本文标题:Python格式化字符串
本文链接:https://www.haomeiwen.com/subject/gjoibltx.html
网友评论