將Python If 用法,簡單的做筆記。
if 變數 in 集合,可判斷變數值集合裡是否有。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | # == 等於 # != 不等仿 # and:和 or:或
#基本IF判斷行式,if 條件 : 符合執行,elif 次要條件,else上述條件沒符合的話:執行。 def If_score(score): #判斷大於等於60且小於等於99,就顯示及格。 if score >= 60 and score <=99: print('及格:',score) #判斷是否滿分。 elif score==100: print('滿分:',score) return '滿分' elif score == 0: print('0分:',score) #上述條件都沒符合執行else下程式碼。 else: print('不及格:',score)
#使用比對文字做為條件。 if If_score(100)=='滿分': print('-----高手-----\n')
If_score(61) If_score(100) If_score(0) If_score(20)
#如果沒回傳資料就執行。 if not If_score(101): print('\nIf_score(101)沒資料') Test='' if not Test: print('Test沒資料、\n')
Number=[1,2,3,4,5] #Number 有數字3,印出有喔!
if 3 in Number: print('有喔!')
|
結果:
沒有留言:
張貼留言