python 字符串拼接
时间: 2023-10-29 08:59:48 浏览: 64
python分割和拼接字符串
5星 · 资源好评率100%
在 Python 中,可以使用加号(+)将两个字符串拼接在一起,也可以使用格式化字符串来将变量插入到字符串中。
示例代码:
```
str1 = "Hello"
str2 = "World"
str3 = str1 + " " + str2
print(str3) # 输出:Hello World
name = "Tom"
age = 20
print(f"My name is {name}, and I am {age} years old.") # 输出:My name is Tom, and I am 20 years old.
```
另外,还可以使用 join() 方法来拼接多个字符串,它会在每个字符串之间插入指定的分隔符。
示例代码:
```
words = ["I", "love", "Python"]
sentence = " ".join(words)
print(sentence) # 输出:I love Python
```
阅读全文