Python asoslari


class Employee: def __init__(self,name,id)



Yüklə 1,14 Mb.
səhifə76/81
tarix13.12.2023
ölçüsü1,14 Mb.
#176038
1   ...   73   74   75   76   77   78   79   80   81
k100001

class Employee: def __init__(self,name,id):
self.id = id; self.name = name;
def display (self): print("ID: %d \nName: %s"%(self.id,self.name))
emp1 = Employee("John",101) emp2 = Employee("David",102)
#accessing display() method to print employee 1 information emp1.display();
#accessing display() method to print employee 2 information emp2.display();

ID: 101


Name: John

ID: 102


Name: David

Misol: Sinf ob'ektlari sonini hisoblash


class Student: count = 0 def __init__(self):
Student.count = Student.count + 1
s1=Student() s2=Student() s3=Student()
print("The number of students:",Student.count)

The number of students: 3

Pythonning parametrlanmagan konstruktorga misoli


class Student:
# Constructor - parametrlanmagan def __init__(self): print("This is non parametrized constructor")
def show(self,name): print("Salom",name)
student = Student() student.show("Abbosbek")

Salom Abbosbek

Pythonning parametrlangan konstruktorga misol


class Student:
# Constructor - parameterized def __init__(self, name): print("This is parametrized constructor") self.name = name
def show(self): print("Hello",self.name)

Yüklə 1,14 Mb.

Dostları ilə paylaş:
1   ...   73   74   75   76   77   78   79   80   81




Verilənlər bazası müəlliflik hüququ ilə müdafiə olunur ©azkurs.org 2024
rəhbərliyinə müraciət

gir | qeydiyyatdan keç
    Ana səhifə


yükləyin