python如何使用字典實現switch
1、構建字典。前面key的數字代表使用者輸入的功能序號。value代表相應的功能函式。
這些函式是根據業務需求實現的普通函式。
2、使用迴圈。捕捉使用者輸入,然後執行。
例項
# -*- coding: UTF-8 -*- """ @author:AmoXiang @file:28.使用字典實現 switch 結構.py @time:2021/02/01 """ def get_monday(): # 定義函式 return "星期一" # 返回星期一 def get_tuesday(): return "星期二" # 返回星期二 def get_wednesday(): return "星期三" # 返回星期三 def get_thursday(): return "星期四" # 返回星期四 def get_friday(): return "星期五" # 返回星期五 def get_saturday(): return "星期六" # 返回星期六 def get_sunday(): return "星期日" # 返回星期日 def get_default(): return "不知道星期幾" # 模擬swtich語句中的default語句功能 switcher = { # 透過字典對映來實現switch/case功能 1: get_monday, # 透過鍵不同,呼叫不同的函式 2: get_tuesday, 3: get_wednesday, 4: get_thursday, 5: get_friday, 6: get_saturday, 7: get_sunday } for i in range(2): # 測試2次 day = input("今天是一週第幾天?:").strip() # 手動輸入一個天數 if day.isdigit(): # 判斷是否是數字 day = int(day) # 轉換為int型 else: day = 0 # 設定day值為0 day_name = switcher.get(day, get_default)() # 當day不在字典對映中時,呼叫get_default() print(f"今天{day_name}")
以上就是python使用字典實現switch的方法,希望對大家有所幫助。更多Python學習指路:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/755/viewspace-2828016/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python之 利用字典與函式實現switch case功能Python函式
- switch的python實現Python
- Python實現建立字典Python
- Python 字典實現原理Python
- python 實現有序字典Python
- iOS-字典+block代替switch-(解決switch不能使用NSString)iOSBloC
- Python 雜湊表的實現——字典Python
- 深入 Python 字典的內部實現Python
- 如何用Css3實現Switch元件CSSS3元件
- Python:字典的使用Python
- python根據字典內的值實現排序Python排序
- 如何使用Python 實現秒錶功能?Python
- lucene字典實現原理
- python中的字典賦值操作怎麼實現?Python賦值
- 如何實現不完全字典比較的 helper
- python-字典-如何取出字典中的所有值Python
- Python列表、元組、字典使用Python
- Python中字典使用詳解Python
- python3 字典的使用Python
- Golang 中字典的 Comma Ok 是如何實現的Golang
- Lucene字典的實現原理
- 字典(Dictionary)的javascript實現JavaScript
- https如何使用python+flask來實現HTTPPythonFlask
- Python:如何風騷而又不失優雅的使用Switch...CasePython
- python字典合併的使用注意Python
- Python學習(13)--Lambda表示式和switch語句的實現Python
- 字典樹及其C++實現C++
- 如何使用Python實現FTP伺服器?Python學習教程PythonFTP伺服器
- python 中字典dict如何新增元素?Python
- python字典如何刪除鍵值對Python
- 使用Python中的字典模擬類Python
- python 字典內建方法get的使用Python
- 使用 Python 字典向 SQLite 插入資料PythonSQLite
- 如何使用Hanlp載入大字典HanLP
- 字典樹(字首樹)簡單實現
- Redis設計於實現之字典Redis
- Redis 字典結構實現分析BTRedis
- Redis 設計與實現 4:字典Redis