https://docs.python.org/3/tutorial/controlflow.html#for-statements
for는 시퀀스 아이템을 모두 순회합니다. (시퀀스에서 보이는 순서로)
Python’s for statement iterates over the items of any sequence (a list or a string), in the order that they appear in the sequence.
https://docs.python.org/3/tutorial/controlflow.html#for-statements
for는 시퀀스 아이템을 모두 순회합니다. (시퀀스에서 보이는 순서로)
Python’s for statement iterates over the items of any sequence (a list or a string), in the order that they appear in the sequence.