enumerate()
List, Tuple, String ๋ฑ ์๋ฃํ์ ์
๋ ฅ๋ฐ์ผ๋ฉด
์ธ๋ฑ์ค ๊ฐ์ ํฌํจํ๋ enumerate ๊ฐ์ฒด๋ฅผ ๋๋ ค์ค๋ค.
๋ฆฌ์คํธ์ ์์์ ์์๊ฐ์ ๋ถ์ฌํด์ฃผ๋ ํจ์.
months = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
print(len(months))
for month, day in enumerate(months):
print('{}์ = {}์ผ'.format(month+1, day))
'๐์น ๊ฐ๋ฐ(Web) > ๐ํ์ด์ฌ(Python)' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
ํ์ด์ฌ ๋ฉ์๋(method)/string๊ฐ์ฒด format ๋ฉ์๋/find ๋ฉ์๋/count ๋ฉ์๋/find ๋ฉ์๋/ index ๋ฉ์๋ (0) | 2023.01.30 |
---|---|
python ๋ด์ฅ ํจ์ ๋ฌธ์์ด/์ฒ๋จ์ ์ผํ/์ ๋๊ฐ/์ต๋๊ฐ/์ต์๊ฐ/๊ฑฐ๋ญ์ ๊ณฑ/์ค๋ฆ์ฐจ์์ ๋ ฌ/์ญ์ ๋ ฌ/zipํจ์ (0) | 2023.01.30 |
ํ์ด์ฌ divmod() ํจ์ (0) | 2023.01.30 |
ํ์ด์ฌ eval ํจ์ (2) | 2023.01.30 |
ํ์ด์ฌ continue (0) | 2023.01.30 |