Result Size:
625 x 571
demo_ref_getattr.py:
class Person: name = "John" age = 36 country = "Norway" x = getattr(Person, 'age') print(x)
x
class
Person
:
name
=
"John"
age
=
36
country
=
"Norway"
x
=
getattr
(
Person
,
'age'
)
print
(
x
)
C:\Users\My Name>python demo_getattr.py
36