共计 305 个字符,预计需要花费 1 分钟才能阅读完成。
Python 中字符串格式化的操作是通过使用字符串的 format()
方法或者使用 %
操作符来将变量插入到字符串中。下面是两种字符串格式化的示例:
使用 format()
方法:
name = "Alice"
age = 30
sentence = "My name is {} and I am {} years old".format(name, age)
print(sentence)
使用 %
操作符:
name = "Bob"
age = 25
sentence = "My name is %s and I am %d years old" % (name, age)
print(sentence)
这两种方法都可以实现字符串格式化的操作,选择其中一种来使用即可。
丸趣 TV 网 – 提供最优质的资源集合!
正文完