Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from User import *
- class Admin(User):
- def __init__(self, name="Mateusz", lastname="Grabarczyk", login="admin", password="admin"):
- super().__init__(name, lastname, login, password)
- def welcome(self):
- print("Welcome {} {}, our dear Admin!".format(self.name, self.lastname))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement