python如何打印文字加变量的值

avatar
作者
筋斗云
阅读量:0

要在Python中打印文字和变量的值,可以使用字符串格式化的方法,其中最常用的方法是使用format()函数或者在字符串前加上f

# 使用 format() 函数 name = "Alice" age = 30 print("My name is {} and I am {} years old.".format(name, age))  # 使用 f 字符串 print(f"My name is {name} and I am {age} years old.") 

这样就可以打印出文字和变量的值了。在字符串中使用大括号{}来表示变量的位置,然后通过format()函数或者f字符串来将变量的值填充进去。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!