Refacere repo

This commit is contained in:
Ionel Andrei Cataon
2026-02-12 14:14:46 +02:00
parent 002d53928a
commit ad4a4cf8f6
1059 changed files with 193216 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
#!/home/andrei/it_school/bin/python3
class Student:
def __init__(self, nume, varsta, nota):
self.nume = nume
self.varsta = varsta
self.nota = nota
def display_info(self):
print(f"Nume: {self.nume}, Varsta: {self.varsta}, Nota: {self.nota}")
student1 = Student("Andrei", 20, 9.5)
student1.display_info()