from user import User class Customer(User): ''' Class constructor to instatiate a customer object No additional properties are assigned to the customer ''' def __init__(self): super().__init__() def login(): print("Logging in as Customer") def signup(): print("Signing up as Customer")