10 lines
293 B
Python
10 lines
293 B
Python
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})"
|
|
|