fork download
  1. print('hello'.capitalize())
  2. print('hello'.upper())
  3. print('hello'.__len__())
  4. print(len('hello'))
  5. print('hello world'.replace('world','programming'))
  6. print("eun kwan's \"Tutorial\"")
  7. print("\\")
  8. print("hello\nworld")
  9. print("hello\tworld")
  10. print("\a")
Success #stdin #stdout 0.07s 14048KB
stdin
Standard input is empty
stdout
Hello
HELLO
5
5
hello programming
eun kwan's "Tutorial"
\
hello
world
hello	world