1. 问题:
- 怎样简洁的把列表中的元素赋值给单个变量?
- 当需要列表中指定几个值时,剩余的变量都收集在一起,该怎么进行变量赋值?
- 当只需要列表中指定某几个值,其他值都忽略时,该怎么进行变量赋值?
2. 解决方法:
- 示例:
python
test_list = [1 ,3 ,6 ,2 ,9]
# 一对一赋值
x, y, z, m, n = test_list
print(f"一一赋值输出:{x}, {y}, {z}, {m}, {n}")
# 收集赋值
x, *y, z = test_list
print(f"一对多赋值输出:{x}, {y}, {z}")
# 丢弃型赋值
_, x, y, _, z = test_list
print(f"丢弃部分内容赋值:{x}, {y}, {z}")
- 示例结果: