Python でタプルを反復処理する

Vaibhav Vaibhav 2022年4月12日
Python でタプルを反復処理する

Python での解凍とは、1 行のコードを使用してリストまたはタプルの値を変数に割り当てることを指します。この記事では、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

親タプル内の各値タプルは、変数 x および y で解凍されます。

著者: 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