if문

Posted by PeEn
2019. 5. 26. 23:57 Programing/Python

if 조건 :
    실행할명령

ex)
if True :
    print("참입니다.")
----------
참입니다.

if False :
    print("거짓입니다.")
------

아무것도 출력 x


if 조건 :
    실행할명령1
else:
    실행할명령2

ex)
score = 60
if socre>80:
    print("합격입니다")
else :
    print("불합격입니다")
---------
불합격입니다

if 조건1:
    실행할조건1
elif 조건:
    실행할조건2
else:
    실행할조건3

ex)
socre =75
if 80 < score <= 100:
    print("학점은 A입니다")
elif 60 < score <= 80:
    print("학점은 B입니다")
elif 40 < score <= 60:
    print("학점은 C입니다")
else :
    printf("학점은 F입니다")
----------
학점은 C입니다


total_price = 0
age = [22,21,17,32,4,28,19,8]
for ag in age:
    if ag >=20:
        total_price = total_price + 8000
    elif ag >= 10:
        total_price = total_price + 5000
    else:
        total_price = total_price + 2500
print("총 입장료는",total_price,"원입니다.")
---------------------
총 입장료는 47000 원입니다.
>>> 


games = 12
points = 25
if games >= 10 and points >= 20:
    print("MVP로 선정되었습니다.")
-------------------
MVP로 선정되었습니다.
>>> 

and == 둘다 true일때

or == 둘중 하나만 true이면 true

not == 뒤 조건이 true이면 false false이면 true


suspects = [['거위','새', '암컷'],['푸들','개','수컷'],['비글','개','암컷']]
for suspect in suspects:
    if suspect[1] == '개' and suspect[2]=='암컷':
        print("범인",suspect[0],"입니다")
----------
범인 비글 입니다
>>> 

'Programing > Python' 카테고리의 다른 글

입력  (0) 2019.05.27
while문  (0) 2019.05.27
논리형  (0) 2019.05.26
순서열  (0) 2019.05.26
반복문 for  (0) 2019.05.26