Python怎么在字符串中插入变量的值

59次阅读
没有评论

共计 315 个字符,预计需要花费 1 分钟才能阅读完成。

在 Python 中,可以使用字符串的 format() 方法或者 f -string 来插入变量的值到字符串中。

使用 format() 方法:

name = "Alice"
age = 30
sentence = "My name is {} and I am {} years old.".format(name, age)
print(sentence)

使用 f -string:

name = "Alice"
age = 30
sentence = f"My name is {name} and I am {age} years old."
print(sentence)

这两种方法都可以将变量的值插入到字符串中。f-string 是 Python 3.6 及以上版本引入的新特性,更简洁方便。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2024-03-19发表,共计315字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)