plan na czwartek
This commit is contained in:
22
dzien_04/przyklady/klasy_02.py
Normal file
22
dzien_04/przyklady/klasy_02.py
Normal file
@@ -0,0 +1,22 @@
|
||||
class Computer:
|
||||
def __init__(self):
|
||||
print("Startujemy...")
|
||||
# definicja właściwości obiektów tej lasy
|
||||
self.procesor = "CPU at start"
|
||||
self.speed = "5 GHz"
|
||||
self.cpu_speed = 5000
|
||||
|
||||
|
||||
komputer1 = Computer()
|
||||
komputer2 = Computer()
|
||||
|
||||
print(komputer1)
|
||||
print(dir(komputer1))
|
||||
print(dir(komputer2))
|
||||
print(komputer1.procesor)
|
||||
print(komputer2.procesor)
|
||||
|
||||
komputer1.procesor = "AMD M6"
|
||||
print('-------------------')
|
||||
print(komputer1.procesor)
|
||||
print(komputer2.procesor)
|
||||
Reference in New Issue
Block a user