Python - 반복문으로 Set 순회

for문으로 Set의 모든 요소를 순회하는 방법을 소개합니다.

1. for문으로 Set 순회

다음과 같이 for문을 이용하여 Set의 모든 요소들을 순회할 수 있습니다.

fruits = {"apple", "kiwi", "banana", "blueberry"}

for fruit in fruits:
    print(fruit)

Output:

apple
banana
kiwi
blueberry

2. enumerate를 이용하여 Index 출력

enumerate()를 이용하면 아래와 같이 Index를 함께 출력할 수 있습니다. item[0]에 index가 저장되어있고, item[1]에 Set의 요소가 저장되어있습니다.

fruits = {"apple", "kiwi", "banana", "blueberry"}

for item in enumerate(fruits):
    print(item)
    print(f"item[0]={item[0]}, item[1]={item[1]}")

Output:

(0, 'apple')
item[0]=0, item[1]=apple
(1, 'banana')
item[0]=1, item[1]=banana
(2, 'kiwi')
item[0]=2, item[1]=kiwi
(3, 'blueberry')
item[0]=3, item[1]=blueberry

2.1 index와 요소를 분리하여 순회

아래와 같이 index와 요소를 분리하여 접근할 수 있습니다.

fruits = {"apple", "kiwi", "banana", "blueberry"}

for index, fruit in enumerate(fruits):
    print(f"index={index}, fruit={fruit}")

Output:

index=0, fruit=banana
index=1, fruit=kiwi
index=2, fruit=blueberry
index=3, fruit=apple

2.2 index가 1부터 시작하도록 설정

enumerate(set, value)는 index의 초기값이 value가 되도록 설정합니다.

아래 예제의 결과를 보시면 index가 1부터 시작합니다.

fruits = {"apple", "kiwi", "banana", "blueberry"}

for index, fruit in enumerate(fruits, 1):
    print(f"index={index}, fruit={fruit}")

Output:

index=1, fruit=kiwi
index=2, fruit=banana
index=3, fruit=blueberry
index=4, fruit=apple
Loading script...

Related Posts

codechachaCopyright ©2019 codechacha