fork download
  1. class Hello:
  2. def __init__(this) :
  3. this.x = 0
  4.  
  5. def ex(this):
  6. this.x = 7
  7.  
  8. h = Hello()
  9. print(h.x)
  10. h.ex()
  11. print(h.x)
Success #stdin #stdout 0.03s 44680KB
stdin
Standard input is empty
stdout
0
7