美文网首页
Python格式化字符串

Python格式化字符串

作者: 术枚派 | 来源:发表于2021-08-17 21:04 被阅读0次

Python的字符串可以使用%来进行格式化。


a = "hello"
print("%s"%a)
#输出:hello

字符串中有多个格式化字符,后面需要用括号来传参数

a = "hello"
b = "world"
print("%s%s"%(a,b))

相关文章

网友评论

      本文标题:Python格式化字符串

      本文链接:https://www.haomeiwen.com/subject/gjoibltx.html