python - 반복문


python - 반복문

1. for >>> for each_movie in movies:print(each_movie) The Holy GrailThe Life of BriantwoThe Meaning of LifeGOGO>>> 2. while >>> while count < len(movies):print(movies[count])count +=1 The Holy GrailThe Life of BriantwoThe Meaning of LifeGOGO

python - 반복문에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.


원문링크 : python - 반복문