이 글의 내용은 파이썬의 조건부 판단 코드에 대한 내용입니다. 참고할만한 내용이 있으니 참고하시면 도움이 될 것 같습니다.
조건문 실행 과정:
if 조건부 판단 주의:
1. 각 조건 뒤에 콜론을 사용하세요. :.
2. 들여쓰기를 사용하여 코드 블록을 나눕니다. 들여쓰기 번호가 같은 명령문이 함께 코드 블록을 형성합니다.
if...else, 단일 조건 판단
username_store = 'lipandeng' password_store = '123' username_input = input('your username:') password_input = input('your password:') if username_input == username_store and password_input == password_input: print('welcome {0}'.format(username_input)) else: print('Invalid username and password!')
if...elif...else, 다중 조건 판단
score = int(input('Enter your score:')) # input()返回的数据类型是str,int()函数是把str转int。 if score < 0 or score > 100: # 条件1,此条件为True时执行print(),elif后面的代码不再执行。 print('Scores of the range is 0-100.') elif score >= 90: # 条件2,当条件1为False时判断条件2,此条件为True时执行print(),elif后面的代码不再执行。 print('Your score is excellent.') elif score >= 60: # 条件3,当条件1和条件2为False时判断条件3,此条件为True时后执行print(),elif后面的代码不再执行。 print('Your score is good.') else: # 条件4,以上判断条件都为False时执行的print()。 print('Your score is not pass the exam.')
위 내용은 Python의 if 조건부 판단 코드 분석의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!