Quick actions

cmd+k|ctrl+k

Navigation

Languages

OOP Example

Snippet info

Language

Python

Visibility

public

Author

zvat.333333

Created

2021-05-08T10:18:51.319352Z

Updated

2021-05-08T10:52:23.319678Z

class Car: 
    def __init__(self, color, mark):
        self.color = color
        self.mark = mark


bmw = Car("white", "BMW")
audi = Car("blue", "AUDI")

print(bmw)
print(audi.mark)
INFO