Python의 if 조건부 판단 코드 분석

不言
풀어 주다: 2018-09-20 16:12:36
원래의
2314명이 탐색했습니다.

이 글의 내용은 파이썬의 조건부 판단 코드에 대한 내용입니다. 참고할만한 내용이 있으니 참고하시면 도움이 될 것 같습니다.

조건문 실행 과정:

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(&#39;Scores of the range is 0-100.&#39;)
elif score >= 90:   # 条件2,当条件1为False时判断条件2,此条件为True时执行print(),elif后面的代码不再执行。
    print(&#39;Your score is excellent.&#39;)
elif score >= 60:   # 条件3,当条件1和条件2为False时判断条件3,此条件为True时后执行print(),elif后面的代码不再执行。
    print(&#39;Your score is good.&#39;)
else:   # 条件4,以上判断条件都为False时执行的print()。
    print(&#39;Your score is not pass the exam.&#39;)
로그인 후 복사

위 내용은 Python의 if 조건부 판단 코드 분석의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿