mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 20:05:16 +07:00
IJ-CR-110671 GitOrigin-RevId: 768a88b91943de9dcab5c5023073c82c5f8c93d7
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()
|