Advertisement
MateuszGrabarczyk

Admin.py

Mar 29th, 2022
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. from User import *
  2.  
  3.  
  4. class Admin(User):
  5. def __init__(self, name="Mateusz", lastname="Grabarczyk", login="admin", password="admin"):
  6. super().__init__(name, lastname, login, password)
  7.  
  8. def welcome(self):
  9. print("Welcome {} {}, our dear Admin!".format(self.name, self.lastname))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement