Python实现switch效果
生活随笔
收集整理的這篇文章主要介紹了
Python实现switch效果
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Java中有switch這個東東有的地方使用switch感覺還挺好使,但是Python沒有提供switch這個東東,下面我們想辦法來完成類似Java和C里面的那種switch效果。
Java示例代碼:
import java.util.Scanner;public class Demo {public static void main(String[] args) {Scanner sc = new Scanner(System.in);System.out.println("請輸入一個月份(1-12):");int month = sc.nextInt();switch(month) {case 1:case 2:case 12:System.out.println("冬季");break;case 3:case 4:case 5:System.out.println("春季");break;case 6:case 7:case 8:System.out.println("夏季");break;case 9:case 10:case 11:System.out.println("秋季");break;default:System.out.println("輸入的格式有誤!!!");}sc.close();} }eclipse中執行結果:
請輸入一個月份(1-12): 12 冬季Python示例代碼:
sets = {'1': '冬季','2': '冬季','3': '春季','4': '春季','5': '春季','6': '夏季','7': '夏季','8': '夏季','9': '秋季','10': '秋季','11': '秋季','12': '冬季', }string = int(input("請輸入一個月份(1-12):")) print(sets.get(str(string), '輸入的格式有誤!!!')) # get(value,not result return value)pycharm中執行結果:
請輸入一個月份(1-12):12 冬季或
''' 遇到問題沒人解答?小編創建了一個Python學習交流QQ群:579817333 尋找有志同道合的小伙伴,互幫互助,群里還有不錯的視頻學習教程和PDF電子書! ''' def a(month):print(f'你輸入的是:【{month}】是春季')def b(month):print(f'你輸入的是:【{month}】是夏季')def c(month):print(f'你輸入的是:【{month}】是秋季')def d(month):print(f'你輸入的是:【{month}】是冬季')def e(month):print(f'輸入的是:【{month}】請檢查,格式有誤!!!')sets = {'1': d,'2': d,'3': a,'4': a,'5': a,'6': b,'7': b,'8': b,'9': c,'10': c,'11': c,'12': d,'13': e }string = str(input("請輸入一個月份(1-12):")) sets.get(string, e)(string)pycharm中執行結果:
請輸入一個月份(1-12):12 你輸入的是:【12】是冬季總結
以上是生活随笔為你收集整理的Python实现switch效果的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python实现ldap接入
- 下一篇: Python中的构造方法