python 将变量加入到字符串中
时间: 2024-05-13 18:17:20 浏览: 102
Python 在字符串中加入变量的实例讲解
在 Python 中,有多种方法可以将变量加入到字符串中。以下列举了其中的几种方法:
1. 使用字符串拼接符号 "+"
```python
name = "Alice"
age = 25
print("My name is " + name + " and I am " + str(age) + " years old.")
```
2. 使用字符串格式化
```python
name = "Alice"
age = 25
print("My name is {} and I am {} years old.".format(name, age))
```
3. 使用 f-strings
```python
name = "Alice"
age = 25
print(f"My name is {name} and I am {age} years old.")
```
以上三种方法都可以将变量加入到字符串中,其中 f-strings 是 Python 3.6 及以上版本才支持的一种方法。
阅读全文