python_ref_getattr_2.py:
x
 
class Person:
  name = "Bill"
  age = 63
  country = "USA"
x = getattr(Person, 'page', 'my message')
print(x)