亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python分支結構有哪些

發布時間:2020-09-24 13:44:03 來源:億速云 閱讀:180 作者:Leah 欄目:編程語言

python分支結構有哪些?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

if語句的使用

在Python中,要構造分支結構可以使用if、elif和else關鍵字。所謂關鍵字就是有特殊含義的單詞,像if和else就是專門用于構造分支結構的關鍵字,很顯然你不能夠使用它作為變量名(事實上,用作其他的標識符也是不可以)。下面模擬個認證的例子來說明一下,

username=str(raw_input("請輸入用戶名:"))
password=str(raw_input("請輸入密碼:"))

if username == "admin" and password=="12345" :
    print ("身份認證成功")
else:
    print ("身份認證失敗")

以上的代碼還是存在不嚴謹的,我們還需要通過判斷用戶輸入的是否為空值。這里需要用到if的嵌套。修改后的代碼如下:

username=str(raw_input("請輸入用戶名:"))
password=str(raw_input("請輸入密碼:"))

if username !='' and password !='':
    if username == "admin" and password=="12345" :
        print ("身份認證成功")
    else:
        print ("身份認證失敗")
else:
    print("請輸入用戶名和密碼")

鞏固練習

練習1:英制單位與公制單位互換

#1英寸=25.4毫米

value=float(raw_input('請輸入長度:'))
unit=str(raw_input('請輸入單位:'))

if unit == 'in' or unit == '英寸':
    print('%f英寸=%f厘米' %(value,value*2.54))
elif unit =='cm' or unit =='厘米':
    print('%f英寸=%f厘米' % (value, value / 2.54))
else:
    print('請輸入有效的單位')

練習2:與電腦玩剪刀石頭布游戲

import random

payer=int(raw_input('請輸入你的指令(0:石頭,1:剪刀,2:布):'))
comptuer=random.randint(0,2)

if (payer == 1 and comptuer == 2 ) or (payer == 0 and comptuer == 1 ) or (payer== 2 and comptuer==0):
    print('電腦出:{},你出{},你贏了'.format(comptuer,payer))
elif (payer== comptuer):
    print('電腦出:{},你出{},打平'.format(comptuer, payer))
else:
    print('電腦出:{},你出{},你輸了'.format(comptuer, payer))

針對以上的小游戲,我們有這樣一個需求,三盤兩勝方可算贏。那么程序又如何修改呢。參考如下:

import random
comptuer_win=0
payer_win=0
while True :
    payer=int(raw_input('請輸入你的指令(0:石頭,1:剪刀,2:布):'))
    comptuer=random.randint(0,2)


    if (payer == 1 and comptuer == 2 ) or (payer == 0 and comptuer == 1 ) or (payer== 2 and comptuer==0):
        print('電腦出:{},你出{},你贏了'.format(comptuer,payer))
        payer_win+=1
        print(payer_win)
    elif (payer== comptuer):
        print('電腦出:{},你出{},打平'.format(comptuer, payer))


    else:
        print('電腦出:{},你出{},你輸了'.format(comptuer, payer))
        comptuer_win += 1

    if comptuer_win == 2 :
        print('電腦最終勝出')
        break
    elif payer_win == 2 :
        print('電腦最終勝出')

練習3:輸入三條邊長如果能構成三角形就計算周長和面積

import math
a=int(raw_input("請輸入三角形的第一條邊長:"))
b=int(raw_input("請輸入三角形的第二條邊長:"))
c=int(raw_input("請輸入三角形的第二條邊長:"))

if a+b > c and a+c>b and b+c >a :
    print("三角形的周長:{}".format(a+b+c))

    #三角形面積,已知三邊利用海倫公式(p=(a+b+c)/2)
    #S=sqrt[p(p-a)(p-b)(p-c)]
    p=(a+b+c)/2
    area=math.sqrt(p*(p-a)*(p-b)*(p-c))

    print("三角形的面積:{}".format(area))

else:
    print("輸入的邊長不能構成三角形,請重新輸入")

練習4:實現一個個人所得稅計算器。

salary=float(input('本月收入:'))
insurance=float(input('五險一金扣除:'))
diff=salary-insurance-5000

if diff <= 0:
    rate = 0
    deduction = 0
elif diff < 3000 :
    rate=0.3
    deduction = 0
elif diff < 12000 :
    rate =  0.1
    deduction= 210

elif diff < 25000:
    rate = 0.2
    deduction=1410
elif diff < 35000 :
    rate = 0.25
    deduction = 2660
elif diff < 55000:
    rate =0.3
    deduction = 4410
elif diff < 80000 :
    rate = 0.35
    deduction = 7160
else:
    rate = 0.45
    deduction=15160

tax=abs(diff*rate - deduction)
print('個人所得稅: ¥%.2f元' % tax)
print('實際到手收入:¥%.2f元' % (diff + 5000 - tax))

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

洪泽县| 江城| 河南省| 安丘市| 高安市| 会理县| 江安县| 桑植县| 绥棱县| 荃湾区| 吉首市| 松江区| 和硕县| 乾安县| 岳普湖县| 嘉兴市| 洛隆县| 资讯| 望江县| 赫章县| 辛集市| 崇礼县| 苍南县| 朔州市| 台北县| 屏山县| 南召县| 利津县| 武义县| 敦煌市| 虞城县| 辽宁省| 乌兰察布市| 乌拉特前旗| 叶城县| 古蔺县| 普兰店市| 宜良县| 上犹县| 西盟| 承德市|