」工欲善其事,必先利其器。「—孔子《論語.錄靈公》
首頁 > 程式設計 > 如何在Python中實現案例/交換機語句?

如何在Python中實現案例/交換機語句?

發佈於2025-02-26
瀏覽:761

How to Implement Case/Switch Statements in Python?

Python Equivalent to the Case/Switch Statement

Python does not provide a dedicated syntax for case/switch statements like other programming languages. However , there are several alternative approaches to achieve similar functionality.

Using Pattern Matching (Python 3.10 and above)

From version 3.10 onwards, Python introduced pattern matching.它允許您匹配不同的模式並執行相應的代碼塊。

def http_error(status): 比賽狀態: 案例400: 返回“不良請求” 案例404: 返回“未找到” 案例418: 返回“我是茶壺” 案例_:#默認情況 返回“ Internet出現問題”
def http_error(status):
    match status:
        case 400:
            return "Bad request"
        case 404:
            return "Not found"
        case 418:
            return "I'm a teapot"
        case _:  # Default case
            return "Something's wrong with the internet"
3.10之前,一個常見的解決方法是將詞典用於將dictionaries映射到相應的函數塊。

#定義功能塊 def Zero(): 打印(“您輸入零。\ n”) def sqr(): 打印(“ n是一個完美的正方形\ n”) def evev(): 打印(“ n是偶數\ n”) def prime(): 打印(“ n是素數\ n”) #映射輸入到功能塊 選項= {0:零, 1:SQR, 4:SQR, 9:SQR, 2:甚至 3:Prime, 5:Prime, 7:Prime} #調用等效開關塊 選項[num]()

最新教學 更多>

免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。

Copyright© 2022 湘ICP备2022001581号-3