python 中运算符+的作用
时间: 2024-04-30 08:18:34 浏览: 146
python中运算符+的用法-Python中的运算符用法全解.pdf
在 Python 中,运算符 + 用于执行数值加法,也可用于连接字符串和序列。例如:
1. 数值加法:
```
a = 5
b = 10
c = a + b
print(c) # 输出 15
```
2. 字符串连接:
```
str1 = 'Hello'
str2 = 'World'
str3 = str1 + str2
print(str3) # 输出 HelloWorld
```
3. 序列连接:
```
list1 = [1, 2, 3]
list2 = [4, 5, 6]
list3 = list1 + list2
print(list3) # 输出 [1, 2, 3, 4, 5, 6]
```
需要注意的是,运算符 + 两侧的数据类型必须相同,否则会抛出 TypeError 异常。例如,不能将字符串和整数相加。
阅读全文