if 조건문 elif 조건문 비교 연산자 ( == ... ) 논리 연산자 ( and, or., not ) 포함 연산자 ( in, not in ) if 조건문 - if 조건문이란 참과 거짓을 판단하여 밑에있는 명령어를 실행하는 문장을 말합니다. 기본구조 ############### ## if 조건문 ## ############### if command : commands else : commands ex ) #################### ## if 조건문 예시 ## #################### >>> A = 100 >>> if A == 100 : ... print ("Hello") ... else : ... print ("bye") ... Hello ※ python 에서는 들여쓰기(..