如何显示列表的某些部分? (蟒蛇)

时间:2016-07-13 07:51:46

标签: python

基本工资是每个对象的第三个元素。

employee_list = []

sales1 = SalesEmployee('1001', 'Alex', 2000.00, 20000.00, 8.00)
sales2 = SalesEmployee('1002', 'Mark', 1800.00, 22000.00, 6.00)
sales3 = SalesEmployee('1003', 'Fiona', 2500.00, 16000.00, 5.00) 

part1 = PartTimeEmployee('2001', 'Anna', 0.00, 100.00, 8.00)
part2 = PartTimeEmployee('2002', 'Ben', 0.00, 120.00, 9.00)
part3 = PartTimeEmployee('2003', 'John', 0.00, 110.00, 7.00)

employee_list.append(sales1)
employee_list.append(sales2)
employee_list.append(sales3)
employee_list.append(part1)
employee_list.append(part2)
employee_list.append(part3)

如何在不显示兼职员工基本工资的情况下显示所有员工的详细信息。

1 个答案:

答案 0 :(得分:0)

如果SalesEmployee和PartTimeEmployee具有相同的超类,则定义一个显示信息的函数

在此函数中,使用typeof()查看对象是否为SalesEmployee或PartTimeEmployee,然后相应地显示信息。

class Employee
def show:
    if(typeof(self) == PartTimeEmployee):
        print/return blabla
    elif(type(self) == SalesEmployee):
        print/return blabla

类似这样的事情

当您想要显示信息时,使用show

迭代列表中的每个元素