在 Python 中遍历一个元组

Vaibhav Vaibhav 2022年5月17日
在 Python 中遍历一个元组

Python 中的解包是指使用一行代码将列表或元组的值分配给变量。在本文中,我们将学习如何使用 Python 在 for 循环中解压缩元组。

在 Python 中的 for 循环中解压缩元组

我们可以使用 Python 的解包语法在 for 循环中解包元组。解包的语法如下。

x1, x2, ..., xn = <tuple of length n >

左侧或等号之前的变量数应等于元组或列表的长度。例如,如果一个元组有 5 个元素,那么解包它的代码如下。

a = tuple([1, 2, 3, 4, 5])
x1, x2, x3, x4, x5 = a
print(x1)
print(x2)
print(x3)
print(x4)
print(x5)

输出:

1
2
3
4
5

我们可以使用相同的语法在 for 循环中解压缩值。请参阅以下 Python 代码。

a = tuple(
    [("hello", 5), ("world", 25), ("computer", 125), ("science", 625), ("python", 3125)]
)

for x, y in a:
    print(f"{x}: {y}")

输出:

hello: 5
world: 25
computer: 125
science: 625
python: 3125

父元组中的每个值元组都在变量 xy 中解包。

作者: Vaibhav Vaibhav
Vaibhav Vaibhav avatar Vaibhav Vaibhav avatar

Vaibhav is an artificial intelligence and cloud computing stan. He likes to build end-to-end full-stack web and mobile applications. Besides computer science and technology, he loves playing cricket and badminton, going on bike rides, and doodling.

相关文章 - Python Tuple