python_ref_hasattr.py:
x
 
class Person:
  name = "Bill"
  age = 63
  country = "USA"
x = hasattr(Person, 'age')
print(x)