Untitled
unknown
python
3 years ago
351 B
8
Indexable
import uuid
class Student():
def __init__(self, UUID=None, imie=str, nazwisko=str, lista_ocen=list):
self.UUID = UUID
self.imie = imie
self.nazwisko = nazwisko
self.lista_ocen = lista_ocen
self.nowa_ocena = None
def nadaj_UUID(self):
self.UUID = uuid.uuid4()
return self.UUIDEditor is loading...