我正在学习Python,但遇到此错误(Employee不接受任何输入参数)。谁能帮我?

时间:2018-11-14 17:44:23

标签: python-2.7

class Employee:

    def __int__(self, first, last, salary):
        self.first = first
        self.last = last
        self.salary = salary
        self.email = first + '.' + last + '@company.com'

emp_1 = Employee('Yash', 'Runwal', 50000)
#print(emp_1)
#print(emp_2)
print(emp_1.email)

Python给出了一个错误,说Employee不接受任何参数,但是我不知道该怎么做。我目前正在使用Pycharm进行编码。

0 个答案:

没有答案