[Python] for๋ฌธ
โถ for๋ฌธ์ ๊ธฐ๋ณธ ๊ตฌ์กฐ for ๋ณ์ in ๋ฆฌ์คํธ(๋๋ ํํ, ๋ฌธ์์ด): ์ํํ ๋ฌธ์ฅ1 ์ํํ ๋ฌธ์ฅ2 ... -์์ ๋ฅผ ํตํ for๋ฌธ ์ดํดํ๊ธฐ 1. ์ ํ์ ์ธ for๋ฌธ >>> test_list = ['one', 'two', 'three'] >>> for i in test_list: #one, two, three๋ฅผ ์์๋๋ก i์ ๋์
... print(i) ... one two three 2. ๋ค์ํ for๋ฌธ์ ์ฌ์ฉ >>> a = [(1,2), (3,4), (5,6)] >>> for (first, last) in a: ... print(first + last) ... 3 # first:1, last:2 7 # first:3, last:4 11 # first:5, last:6 3. for๋ฌธ์ ์์ฉ ์ด 5๋ช
์ ํ..
2021. 3. 18.