fork download
  1. class Bear:
  2. def __str__(self):
  3. return "Я тучка, тучка, тучка,\nЯ вовсе не медведь!"
  4.  
  5. pooh = Bear()
  6. print(pooh)
Success #stdin #stdout 0.02s 9116KB
stdin
Standard input is empty
stdout
Я тучка, тучка, тучка,
Я вовсе не медведь!