莫凭栏 发表于 2017-10-9 10:47:26

easygui写的门票计算器

自己的写的,初学者,还请多多指教

#票价计算器

import easygui as g

title = '门票计算系统'
fieldName = ['星期','成人人数', '小孩人数']
fieldValues = []
msg = '星期和人数请输入阿拉伯数字\n平日票价100\n周末票价为平日120%\n儿童半价\n'
fieldValues = g.multenterbox(msg, title, fieldName, fieldValues)

weekend = int(fieldValues)
adult = int(fieldValues)
child = int(fieldValues)
adprice = 100



def output():
    msg = ('%d成人和%d小孩总票价为:%.2f'% (adult, child, ticket))
    g.msgbox(msg,title)

if weekend > 5 and weekend < 8:
    ticket = adult*1.2*adprice + child*0.5*adprice
    output()
elif weekend <=5 and weekend >= 1:
    ticket = adult*1*adprice + child*0.5*adprice
    output()
else:
    g.msgbox('输入有误,请检查!',title)

莫凭栏 发表于 2017-10-9 10:48:07

{:5_92:}

sige 发表于 2017-10-13 08:15:36

{:7_137:}

YINXINGSHU 发表于 2017-10-23 08:41:53

学习了

非与飞鱼 发表于 2017-11-1 22:45:43

{:10_279:}
页: [1]
查看完整版本: easygui写的门票计算器