Python[小甲魚008了不起的分支和迴圈2]

來源:互聯網
上載者:User

標籤:

案例:對所給的分數進行評級,以下有三種方案:

score = int(input(‘請輸入一份分數‘))              #第一種方案if 100 >= score >= 90:        print(‘A‘)if 90 > score >= 80:        print(‘B‘)if 80 > score >= 60:        print(‘C‘)if 60 > score >= 0:        print(‘D‘)else:        print(‘輸入錯誤!‘)

  

score = int(input(‘請輸入一份分數‘))              #第二種方案if 100 >= score >= 90:        print(‘A‘)else:        if 90 > score >= 80:                print(‘B‘)                else:                        if 80 > score >= 60:                                print(‘C‘)                        else:                                if 60 > score >= 0:                                        print(‘D‘)                                                else:                                                        print(‘輸入錯誤!‘)

  


score = int(input(‘請輸入一份分數‘))              #第三種方案if 100 >= score >= 90:        print(‘A‘)elif 90 > score >= 80:        print(‘B‘)elif 80 > score >= 60:        print(‘C‘)elif 60 > score >= 0:        print(‘D‘)else:        print(‘輸入錯誤!‘)

  




以上三種方案,第三個的時間複雜度最低。



  #注意 懸掛else

舉個例子,C語言的初學者很容易被一下代碼欺騙。

 

if(hi > 2)    if(hi > 7)        printf(‘good‘)else    printf(‘Fuck‘)

  

  • 條件運算式(三元操作符)


文法:  x if 條件 else y


  • 斷言(assert)

assert這個關鍵字我們稱之為斷言,當這個關鍵字的後邊的條件為假時程式自動崩潰,拋出AssertionError的異常。


舉個例子

 

assert 3 > 4

  

這個語句往往用來在程式中設定檢查點,即用來偵錯工具。 


Python[小甲魚008了不起的分支和迴圈2]

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.