fork download
  1. # your code goes here
  2.  
  3.  
  4. class Myclass:
  5. a = 10
  6. b = 'lo'
  7. def __init__():
  8. a = 10
  9. b = "hello"
  10.  
  11. print('cab' in "Halocabo")
  12.  
  13. p = []
  14. p.append('10')
  15. print(p)
  16.  
  17.  
Success #stdin #stdout 0.04s 9680KB
stdin
Standard input is empty
stdout
True
['10']