사용자 도구

사이트 도구


tag:조건문

TAG: 조건문

문서날짜사용자설명
2020/06/23 18:24 도봉산핵주먹 조건문 * description : 조건문 * author : 도봉산핵주먹 * email : hylee@repia.com * lastupdate : 2020-06-22 조건문 예제 코드 # Section05-1 # 파이썬 흐름제어(제어문) # 조건문 실습 print("type(True) :\t",type(True)) print("type(False) :\t",type(False)) # 기본 형식 # 예1 if True: print("if True :\t","Yes") # 들여쓰기 중요 if False: # 출력되지 않음. print("False :\t","No") # 예2 if False: # 여기는 실행되지 않음. print("if False :\t","You can't reach here") else: # 여기가 실행된다. print("else :\t","Oh, you ar…