class Nowcoder: def __init__(self, name, ID,num): self.name=name self.ID = ID self.num=num def printinfomation(self): print( "{}'s ID is {}, and his or her number of signing in is {}.".format(self.name,self.ID,self.num) ) class IT(Nowcoder): def __init__(self, name, ID, num, language): sup...