fork(9) download
  1. class Cat:
  2. name="Buch"
  3. age=2
  4. breed="house"
  5. def sleep(self):
  6. print("Я сплю, бо я кіт")
  7. def each(self):
  8. print("Де їжа?")
  9. def jump(self):
  10. print("Це не я стрибав")
  11.  
  12.  
  13.  
Success #stdin #stdout 0.04s 9556KB
stdin
Standard input is empty
stdout
Standard output is empty