<\uuuuu main\uuuuuuu.Employee对象位于0x000001E32362C1F0>

2024-10-03 21:30:02 发布

您现在位置:Python中文网/ 问答频道 /正文

class Employee:
    def __init__(self,first,last,salary):
        self.first = first
        self.last = last
        self.salary = salary
    
emp_1 = Employee("Rohan","Parab",100000)
print(emp_1)

Tags: selfinitdefemployeeclassfirstlastprint