fork download
  1. class Test:
  2. def __init__(self):
  3. self.a = "Hello"
  4.  
  5.  
  6. t = Test()
  7. print t.a
  8. t.b = "World"
  9. print t.b
Success #stdin #stdout 0.01s 7896KB
stdin
Standard input is empty
stdout
Hello
World