while문 사용법

HeejinShin·2023년 2월 27일
0

파이썬

목록 보기
3/3

입력한 횟수대로 반복하기

count = int(input('반복할 횟수를 입력하세요: '))
 
i = 0
while i < count:     # i가 count보다 작을 때 반복
    print('Hello, world!', i)
    i += 1
  1. 사용자 입력함수를 통해 값을 입력받아 count에 저장했다.
  2. while문 조건식의 변수 i가 동작할 조건을 count보다 작을 때 까지로 지정했다.
profile
Studying Go Lang

0개의 댓글