python中字符串如何拼接
时间: 2024-05-13 14:14:46 浏览: 74
Python 中字符串拼接的多种方法
在Python中,字符串可以通过"+"运算符或者字符串格式化来进行拼接。
使用"+"运算符:
```python
str1 = "Hello"
str2 = "World"
result = str1 + " " + str2
print(result) # 输出:Hello World
```
使用字符串格式化:
```python
name = "Tom"
age = 18
result = "My name is %s, and I'm %d years old." % (name, age)
print(result) # 输出:My name is Tom, and I'm 18 years old.
```
还可以使用f-string格式化字符串,它是Python 3.6及以上版本引入的新特性:
```python
name = "Tom"
age = 18
result = f"My name is {name}, and I'm {age} years old."
print(result) # 输出:My name is Tom, and I'm 18 years old.
```
以上三种方法都可以用于字符串的拼接。
阅读全文