Result Size: 625 x 571
demo_ref_setattr.py:
x
 
class Person:
  name = "John"
  age = 36
  country = "Norway"
setattr(Person, 'age', 40)
# The age property will now have the value: 40
x = getattr(Person, 'age')
print(x)
C:\Users\My Name>python demo_setattr.py
40