流程控制之if判斷

2021-08-20 08:41:23 字數 946 閱讀 3458

一,

.如果:成績》=90,那麼:優秀

如果成績》=80且<90,那麼:良好

如果成績》=70且<80,那麼:普通

其他情況:很差

score=input('please input your score:')

score=int(score)

if score >= 90:

print('優秀')

elif score >= 80:

print('良好')

elif score >= 70:

print('普通')

else:

print('很差')

age_of_gile=30

if age_of_gile > 28:

print('阿姨好')

二。age_of_gile=18

if age_of_gile >30:

print('阿姨好')

else:

print('小姐好')

三。# 女人的年齡》=18並且<22歲並且身高》170並且體重<100並且是漂亮的,那麼:表白,否則:叫阿姨

age_of_gile=21

height=173

weight=98

is_pretty=true

success=true

if age_of_gile >= 18 and age_of_gile < 22 and height > 170 and weight < 100 and is_pretty == true:

print('我喜歡你,你喜歡我嗎?')

if success == true:

print('在一起,終於不用做單身狗了!')

else:

print('開玩笑,我能喜歡你,看你那傻樣。')

else:

print('阿姨好,再見,不送。')

流程控制之if判斷

if判斷是幹什麼的呢?if判斷其實是在模擬人做判斷。就是說如果這樣幹什麼,如果那樣幹什麼。對於atm系統而言,則需要判斷你的賬號密碼的正確性。學什麼都是為了讓計算機向人一樣工作,我們無時無刻都在判斷。路邊路過乙個生物,你會判斷兩個人是不是會表白?首先會判斷這個生物是不是人類,並且這個人類是個女人,年...

流程控制 條件判斷

if 條件 滿足條件時的操作 else 不滿足條件時的操作可以和else一起使用 if 性別為男性 輸出男性的體重 elif 性別為女性 輸出女性的體重 else 第三種性別的體重 if 條件1 滿足條件1 做的事情1 滿足條件1 做的事情2 if 條件2 滿足條件2 做的事情1 滿足條件2 做的事...

流程控制之for

for 也是迴圈方法。但是用於取值的方法。for迴圈可以來取字串中字元,列表中的元素,字典中的關鍵字等 取字串中的字元 for i in hello print i,end h e l l o 取列表中元素 for i in a 11,33,w r print i,end a 11 33 w r 取...