python 拼接字符串
时间: 2023-07-24 12:42:00 浏览: 71
在 Python 中,可以使用 "+" 号或者 "{}" 格式化字符串的方式来拼接字符串。举例如下:
使用 "+" 号:
```
str1 = "Hello"
str2 = "world"
result = str1 + " " + str2
print(result)
```
输出结果为:
```
Hello world
```
使用 "{}" 格式化字符串:
```
str1 = "Hello"
str2 = "world"
result = "{} {}".format(str1, str2)
print(result)
```
输出结果为:
```
Hello world
```
相关问题
Python拼接字符串
Python中有多种方法可以拼接字符串,其中比较常用的方法有:
1. 使用加号(+)运算符:
```
str1 = 'hello'
str2 = 'world'
result = str1 + ' ' + str2
print(result)
```
2. 使用join方法:
```
str_list = ['hello', 'world']
result = ' '.join(str_list)
print(result)
```
3. 使用格式化字符串(f-string):
```
str1 = 'hello'
str2 = 'world'
result = f'{str1} {str2}'
print(result)
```
以上三种方法都可以用来拼接字符串,具体使用哪种方法可以根据实际情况进行选择。
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.
```
其中,"%s"表示字符串的占位符,"%d"表示整数的占位符。在字符串后面的%(name, age)中,name和age分别对应%s和%d的占位符。
阅读全文