mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
12 lines
193 B
Python
12 lines
193 B
Python
class Car:
|
|
def __init__(self):
|
|
self.color = "green"
|
|
self.size = 23
|
|
|
|
car = Car()
|
|
some_str = "abc"
|
|
some_lst = ["a", "b", "c"]
|
|
some_dict = {"a" : 1, "b" : 2, "c" : 3}
|
|
|
|
print()
|