fork download
  1. print('hello world'.capitalize())
  2. print('hello world'.upper())
  3. print('hello world'.__len__())
  4. print(len('hello world'))
  5. print('Hello world'.replace('world', 'programming'))
Success #stdin #stdout 0.02s 8688KB
stdin
Standard input is empty
stdout
Hello world
HELLO WORLD
11
11
Hello programming