python基礎 if else條件語句的使用

2021-10-06 02:57:12 字數 1207 閱讀 2216

小遊戲的if-else

print

('*'*10

,'歡迎來到消消樂'

,'*'*10

)level =

input

('請輸入你的級別(lv1,lv2):'

)if level==

'lv1'

:print

('隨便玩,免費'

)else

:print

('進入付費級別'

) money =

int(

input

('請充值(必須是100的倍數):'))

if money%

100==

0and money >0:

print

('成功充值'

)else

:print

('充值失敗'

)

產生隨機數,進行大小比較

'''

1. 隨機產生乙個隨機數

2. 鍵盤輸入乙個隨機數

3. 進行比較

4,猜對了,中獎

5. 猜錯了,結束

'''import random

ran = random.randint(1,

10)num =

int(

input

('請輸入乙個數:'))

if ran == num:

print

('恭喜中獎!'

)else

:print

('很遺憾。'

)

多層if-else

('請輸入小宋的年齡:'))

if age <=18:

print

('有眼光'

)elif age >

18and age <=30:

print

('可以可以'

)elif age >30:

print

('太年輕了'

)else:

print

('輸入錯誤'

)

Python語法基礎(四) if else語句

注意 if else語句中,方法體需要縮排 cars bmw toyota audi subaru for car in cars if car bmw print car.upper else print car.lower 輸出 bmw toyota audi subaru1.and連線,表示 ...

python 基礎知識之if else

一 題目1 如果 女人的年齡 18並且 22歲並且身高 170並且體重 100並且是漂亮的,那麼 表白,否則 叫阿姨 age of girl 18 height 171 weight 99 is pretty true if age of girl 18 and age of girl 22 and...

Python條件語句if else

基本語法 python程式語言指定任何非0和非空 null 值為true,0 或者 null為false。python 程式設計中 if 語句用於控制程式的執行,基本形式為 if 判斷條件 執行語句 else 執行語句 其中 判斷條件 成立時 非零 則執行後面的語句,而執行內容可以多行,以縮進來區分...