fork download
  1. url = 'hello, {}'
  2. print(url.format('ithelp'))
  3. print(url)
Success #stdin #stdout 0.02s 9192KB
stdin
Standard input is empty
stdout
hello, ithelp
hello, {}