python引号内引用变量
时间: 2023-07-01 17:20:14 浏览: 443
python三引号如何输入
在Python中,可以使用字符串格式化的方式来引用变量。具体方法是在字符串中使用占位符{},然后使用format方法将变量的值填入占位符中。例如:
```
name = "Alice"
age = 25
msg = "My name is {}, and I am {} years old.".format(name, age)
print(msg)
```
输出结果为:
```
My name is Alice, and I am 25 years old.
```
这样就可以在字符串中引用变量了。
阅读全文