enumerate(): ์์๊ฐ ์๋ ์๋ฃํ์ ์ ๋ ฅ๋ฐ์์ ๋, ์ธ๋ฑ์ค์ ๊ฐ์ ๋์์ ์ ๊ทผํ์ฌ ๋ฆฌํด!
# ์์ ๋ฆฌ์คํธ
fruits = ['apple', 'banana', 'cherry', 'date']
# enumerate() ํจ์๋ฅผ ์ฌ์ฉํ์ฌ ์ธ๋ฑ์ค์ ๊ฐ์ ๋์์ ๋ฐ๋ณต
for index, fruit in enumerate(fruits):
print(f"Index {index}: {fruit}")
Index 0: apple
Index 1: banana
Index 2: cherry
Index 3: date
์ฐธ๊ณ : https://velog.io/@ehdtkd98/ํ๋ก๊ทธ๋๋จธ์ค๊ฐ์ฅ-๊ฐ๊น์ด-๊ธ์-ํ์ด์ฌ-h8cccj2b