第六章實戰
阿新 • • 發佈:2022-12-08
def act(actor): #定義函式 print(actor+"開始參演這個劇本") A = input("導演選定的角色是:") act(A) #呼叫函式
def taocan(a,b,c,d,e,f): print('米線店套餐如下:1.'+ a + '2.' + c + '3.' +e) print(a+b) print(c+d) print(e+f) taocan('考神套餐','13元','單人套餐','9.9元','情侶套餐','20元')
# 星座 m = ('摩羯座','水瓶座','雙魚座','白羊座','金牛座','雙子座', '巨蟹座','獅子座','處女座','天秤座','天蠍座','射手座','摩羯座') # 日期 d = (20,19,21,20,21,22,23,23,23,24,23,22) def xingzuo(month,day): if day < d[month-1]: return m[month-1] else: return m[month] M = int(input("請輸入月份:")) D = int(input("請輸入日期:")) print(str(M)+"月"+str(D)+"日星座為:"+xingzuo(M,D))
def change(dollar): RMB = dollar * 6.28 return RMB dollar = float(input("請輸入要轉換的美元金額:")) print("轉換後人民幣金額是:" , change(dollar))