从事薪资计算方案

时间:2016-05-24 23:01:00

标签: loops python-3.x

我正在进行工资核算计算,我必须让它循环

while name= karen:
    name = (input("enter employees name"))
    if karen>0:
        hours=float(input("enter hours worked"))
        rate=float(input('enter hourly rate'))
        total= (hours)*(rate)+(overtimetotal)
        print (total)
        # when over time
        if hours>40:
            overtimerate=1.50
            overtimetotal= (total)* (overtimerate)
            print (overtimetotal)

我的导师说"应该没有超时时间的输入。你是按小时40来计算的 您需要将总数计算为总数=小时数*费率+超时总数 你需要有一个while循环来检查名字!=" 0" 循环块中的所有内容都将缩进。"

我迷失了写什么来开始循环。

0 个答案:

没有答案