题解 | #多部门的打工人#
多部门的打工人
https://www.nowcoder.com/practice/e704f2c5c30c4aa0b1de9e71bc584fb3
class Nowcoder:
def __init__(self, name, ID, num):
self.name = name
self.ID = ID
self.num = num
def printInformation(self):
print(f"{self.name}'s ID is {self.ID}, and his or her number of signing in is {self.num}.")
class IT(Nowcoder):
def __init__(self, name, ID, num, language):
super().__init__(name, ID, num)
self.language = language
def printInformation(self):
super().printInformation()
print(self.language)
class Designer(Nowcoder):
def __init__(self, name, ID, num, color):
super().__init__(name, ID, num)
self.color = color
def printInformation(self):
super().printInformation()
print(self.color)
a,b,c,d=input().split()
it=IT(a,b,c,d)
it.printInformation()
e,f,g,h=input().split()
de=Designer(e,f,g,h)
de.printInformation()
查看7道真题和解析