조건문
-
파이썬 기초 4. 조건문과 반복문PYTHON 2020. 8. 29. 13:50
🎯 파이썬 제어문의 조건문과 반복문을 알아본다. 조건문 기본형식 if True: print("Yes") if False: # 출력되지 않음. print("No") if False: # 여기는 실행되지 않음. print("You can't reach here") else: # 여기가 실행된다. print("Oh, you are here") 콜론과 들여쓰기를 기억할 것. 관계연산자 # >, >=, c) # True print('or : ', a > b or b > c) # True print('not : ', not a > b) # False print('not : ', not b > c) # False and, or, not을 사용한다. 산술 > 관계 > 논리 순서로 적용 print(5 + 10 > 0 a..