要在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
字符串来将变量的值填充进去。