Projekt_Si/classes/data/kelner.py

10 lines
293 B
Python
Raw Normal View History

2024-04-03 22:24:13 +02:00
import pygame
class Kelner:
def __init__ (self, imie, nazwisko,numer_pracowniczy):
self.imie = imie
self.nazwisko = nazwisko
self.numer_pracowniczy = numer_pracowniczy
def __str__(self):
return f"{self.imie} {self.nazwisko} ({self.numer_pracowniczy})"