-
python-03 식코딩/python 2023. 5. 1. 18:03
1. for문
상자 안에 있는 값들을 모두 꺼내서 확인해보고 싶을 때 사용한다. 들여 쓰기가 중요하다.
loop1 = [2,3,4,5,6,7,8,9] loop2 = [1,2,3,4,5,6,7,8,9] for i in loop1: print('{0} 단----------'.format(i)) for j in loop2: print("{0} * {1} = {2}".format(i, j, i*j)) 2 단---------- 2 * 1 = 2 2 * 2 = 4 2 * 3 = 6 2 * 4 = 8 2 * 5 = 10 2 * 6 = 12 2 * 7 = 14 2 * 8 = 16 2 * 9 = 18 3 단---------- 3 * 1 = 3 3 * 2 = 6 3 * 3 = 9 3 * 4 = 12 3 * 5 = 15 3 * 6 = 18 3 * 7 = 21 3 * 8 = 24 3 * 9 = 27 4 단---------- 4 * 1 = 4 4 * 2 = 8 4 * 3 = 12 4 * 4 = 16 4 * 5 = 20 4 * 6 = 24 4 * 7 = 28 4 * 8 = 32 4 * 9 = 36 5 단---------- 5 * 1 = 5 5 * 2 = 10 5 * 3 = 15 5 * 4 = 20 5 * 5 = 25 5 * 6 = 30 5 * 7 = 35 5 * 8 = 40 5 * 9 = 45 6 단---------- 6 * 1 = 6 6 * 2 = 12 6 * 3 = 18 6 * 4 = 24 6 * 5 = 30 6 * 6 = 36 6 * 7 = 42 6 * 8 = 48 6 * 9 = 54 7 단---------- 7 * 1 = 7 7 * 2 = 14 7 * 3 = 21 7 * 4 = 28 7 * 5 = 35 7 * 6 = 42 7 * 7 = 49 7 * 8 = 56 7 * 9 = 63 8 단---------- 8 * 1 = 8 8 * 2 = 16 8 * 3 = 24 8 * 4 = 32 8 * 5 = 40 8 * 6 = 48 8 * 7 = 56 8 * 8 = 64 8 * 9 = 72 9 단---------- 9 * 1 = 9 9 * 2 = 18 9 * 3 = 27 9 * 4 = 36 9 * 5 = 45 9 * 6 = 54 9 * 7 = 63 9 * 8 = 72
2. break문
break를 사용하여 i의 값이 5가 되면 중간에 멈출 수 있다.
for i in L: if i>5: break print('Item: {0}'.format(i)) Item: 1 Item: 2 Item: 3 Item: 4 Item: 5
3. continue문
continue를 사용하여 내가 원하는 구간만 건너뛸 수 있다.
for i in L: if i%2 == 0: continue print('Item {0}'.format(i)) Item 1 Item 3 Item 5 Item 7 Item 9
4. while문
특정 조건이 될 때까지 식을 반복한다.
value = 5 while value > 0: print(value) value -= 1 5 4 3 2 1
5. 조건문
조건에 따라 다른 결과를 얻고 싶을 때 사용한다.
score = int(input(('input your score:'))) if 90 <= score <=100: grade = 'A' elif 80 <= score < 90: grade = 'B' elif 70 <= score < 80: grade = 'C' elif 60 <= score < 70: grade = 'D' else: grade = 'F' print('Your score is ' + str(score)) print('Your grade is ' + grade) input your score:85 Your score is 85 Your grade is B
'코딩 > python' 카테고리의 다른 글
python-05 예외처리 (0) 2023.05.02 python-04 class (0) 2023.05.02 python-02 함수 (0) 2023.05.01 python-01 데이터 타입 (0) 2023.05.01