fork(1) download
  1. str_line = "I was born in {year}"
  2. str_year = '1987'
  3. print( str_line.format(year=str_year) )
  4. # => I was born in 1987
Success #stdin #stdout 0.02s 8976KB
stdin
Standard input is empty
stdout
I was born in 1987