fork download
  1. x = 42
  2. print(x)
  3. s = 'hoge'
  4. print(s)
  5. char_list = ['w', 'o', 't', 's', 'u', 's', 'h', 'i']
  6. print(''.join(char_list))
  7. y = 0
  8. z = -1
  9. print(x, y, z)
  10. xs = [3, 1, 4, 1, 5]
  11. print(*xs)
  12. print('\n'.join(map(str, xs)))
  13.  
Success #stdin #stdout 0.02s 9096KB
stdin
Standard input is empty
stdout
42
hoge
wotsushi
42 0 -1
3 1 4 1 5
3
1
4
1
5