python没有switch case 不过可以通过建立字典实现类似的功能 例子:根据输入的年月日,判断是该年中的第几天 y = int(input('请输入年:')) m = int(input('请输入月:'))d = int(input('请输入日:')) #建立月份对应天数增加的字典 实现了类似C语言中 switch...case的功能month_dict = {1:0, 2:31, 3:59, 4:90, 5:120, 6:151, 7:181, \ 8:212, 8:243, 10:…