mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 20:30:42 +07:00
9 lines
139 B
Python
9 lines
139 B
Python
class MyClass:
|
|
def __init__(self, my_val):
|
|
self.my_val = my_val
|
|
|
|
|
|
my_class = MyClass(1)
|
|
print(my_class.my_val)
|
|
print(2)
|
|
res = 2 |