python if 語句的練習

2022-08-20 04:33:12 字數 1488 閱讀 4824

1、if語句的練習

cars=['

aodi

','bmw

','falali

','lanbojini']

for car in

cars:

if car == '

bmw'

:

print

(car.upper())

else

:

print(car.lower())

2、外星人顏色的練習

alien_color=['

green

','yellow

','red']

if alien_color =='

green':

count =5

if alien_color=='

yellow':

count=10

if alien_color=='

red'

: count=15

print('

the player get %d point!

'%count)

3、遊樂場收費的練習

age=int(input())

if age<4:

price =0

elif 4<=age<18:

price =5

else

: price =10

print('

shoufei: %d元

'%price)

4、是否在列表中

a1=[1,2,3,4,5]

a2=9

if a2 in a1:

print('in list')

else:

print('not in list !')

5、序數

#

序數表示位置,如1st 和2nd。大多數序數都以th結尾,只有1、2和3例外。

#在乙個列表中儲存數字1~9。

#遍歷這個列表。

#在迴圈中使用乙個if-elif-else 結構,以列印每個數字對應的序數。

#輸出內容應為1st、2nd、3rd、4th、5th、6th、7th、8th 和9th,但每個序數都獨佔一 行。

a=for i in range(1,10):

for b in

a:

if b ==1:

print(str(b)+'st'

)

elif b==2:

print(str(b)+'nd'

)

elif b==3:

print(str(b) + 'rd'

)

else

:

print(str(b) + '

th')

python if語句,while語句

一,if語句 python中最常用的判斷語句,基本格式 1.if else格式 if 條件 結果else 結果 if 條件 滿足條件執行 else if條件不滿足就走這段 ageofoldboy 48 if ageofoldboy 50 print too old,time to retire.el...

Python if語句的用法

if 1 2 print 1 greater than 2 else print 1 less than 2 解析 如果1 2,則列印 1 greater than 2 否則,列印 1 less than 2 else 隱藏score 0 if score 0 print egg elif scor...

python if語句格式

if語句的格式 if 表示式 語句邏輯 當程式執行到if語句的時候,首先計算 表示式 的值 如果表示式的值為正確的 程式中叫真 那麼就執行語句 如果 表示式 的值錯誤 程式中叫假 則跳過整個if語句繼續向下執行 真 除了假就是真 假 0,0.0,none,false if else語句 if 表示式...