python字符串中显示变量
时间: 2024-01-01 11:05:58 浏览: 102
在 Python 中,你可以使用字符串格式化来显示变量的值。其中一种常用的方法是使用 f-strings,它在 Python 3.6 及以上版本中可用。以下是一个例子:
```
name = "Alice"
age = 25
print(f"My name is {name} and I am {age} years old.")
```
输出:
```
My name is Alice and I am 25 years old.
```
在 f-string 中,你可以在字符串中使用大括号 `{}` 来引用变量,并在大括号中使用变量的名称。在运行程序时,Python 将自动替换大括号中的内容为变量的值。
阅读全文