-
데본 파이썬 - 3강 / if, for, while파이썬 정리/본캠프 2024. 4. 25. 15:12
person = {"name": "John", "age": 30, "city": "New York"} for key, value in person.items(): print(key, " : ", value) # name:John # age:30 # city:New York #딕셔너리 내용 연속 출력 가능
while 조건: 코드_블록 i=1 while i<5 i += 1 #i 가 5가 되면 중단됨
"조건" : 불리언 값을 반환하는 표현식
while은 조건이 true로 평가 되는 한, 코드 블록이 반복적으로 실행된다.
이를 정지하기 위해 'break' 를 사용한다.
while True : user_input = input("Type 'quit' to exit: ") if user_input == 'quit' break print("You typed :", user_input)
'Pass'
numbers=[1,2,3,4,5] for i in numbers: if i%2==0 : pass else : print(f."{i}는 홀수입니다.")
'Continue'
num = 0 while num < 10 : num +=1 if num%2==0 : continue print(num) #1\3\5\7\9 // pass 라면 1\2\3\4\5\6\7\8\9
다음 행동으로 넘어갈 떈 pass
바로 다음 반복(Loop)으로 넘어갈 땐 continue
'파이썬 정리 > 본캠프' 카테고리의 다른 글
파이썬 본캠프 - 5-1 강 / 알유파문 (0) 2024.04.25 데분 파이썬 - 4강 / 함수 (1) 2024.04.25 데분 파이썬 - 2강 / list, tuple, dict (0) 2024.04.25 데분 파이썬 - 1강 / 파이썬이란? (0) 2024.04.25