강의

멘토링

커뮤니티

Inflearn Community Q&A

hughlee's profile image
hughlee

asked

Python 100 Problem Solving with Examples Part 1

Loop, for loop, Repeat 0-9

반복문, for문, 0~9 반복

Written on

·

56

0

반복문, for문, 0~9 반복문에서

 

for i in range (10):
    print(i)


여기까지만 나오고 영상이 잘리는데

for i in range (10):
    print(i)
    i += 1 

i+=1 까지 해주어야 0부터 9까지 출력되는게 맞는거죠?

 

python

Answer

This question is waiting for answers
Be the first to answer!
hughlee's profile image
hughlee

asked

Ask a question