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