fork download
  1. class Person:
  2. def __init__(self, id):
  3. self.id = id
  4.  
  5. obama = Person(100)
  6.  
  7. obama.__dict__['age'] = 49
  8. print obama.age + len(obama.__dict__)# your code goes here
Success #stdin #stdout 0s 23352KB
stdin
Standard input is empty
stdout
51