Using inheritance in python

后端 未结 4 1241
轮回少年
轮回少年 2021-01-03 06:36

this is my homework assignment, I saw it posted on the website before, but it looks like it was unsolved and I got a different error message than a person asking that questi

4条回答
  •  悲&欢浪女
    2021-01-03 07:32

    Just look at the code where the error is occurring, and keep looking until you notice what doesn't match up:

    def __init__(self, name, wage, yearlyBonus):
        Employee.__init__(self, name, salary) 
    

提交回复
热议问题