fork download
  1. #!/usr/bin/python
  2.  
  3. class kereta():
  4. def __init__(self):
  5. self.myval = 0
  6.  
  7. def tambah(self, n):
  8. self.myval += n
  9.  
  10. mm = kereta()
  11. mm.tambah(5)
  12.  
  13. print("value pertama: "+str(mm.myval))
  14.  
  15. mm.tambah(4)
  16.  
  17. print("Lepas tambah: "+str(mm.myval))
Success #stdin #stdout 0.02s 4676KB
stdin
Standard input is empty
stdout
value pertama: 5
Lepas tambah: 9