日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

Python实现switch效果

發布時間:2025/3/20 python 12 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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效果的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。