수업소개
조건문은 조건에 따라서 다르게 프로그램이 동작하도록 하는 것입니다. 여기서는 조건문의 기본적인 형식을 살펴봅니다.
조건문의 기본형식
소스
syntax/conditional.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | user_id = input ( 'id?' ) user_pwd = input ( 'password?' ) ''' if user_pwd == '111111': print('Hello master') else: print('Who are you?') ''' if user_id = = 'egoing' : if user_pwd = = '111111' : print ( 'Hello master' ) else : print ( 'Who are you?' ) else : print ( 'Who are you?' ) |
조건문과 논리연산자
소스