You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
208 B
15 lines
208 B
class A:
|
|
|
|
var = 132
|
|
|
|
def __init__(self):
|
|
self.var2 = 34
|
|
|
|
def meth(self, i):
|
|
return 42 + i
|
|
|
|
|
|
a = A()
|
|
print(getattr(a, "var"))
|
|
print(getattr(a, "var2"))
|
|
print(getattr(a, "meth")(5))
|
|
|