fork download
  1. import textwrap
  2.  
  3. def f(x):
  4. return textwrap.dedent(f'''\
  5. a
  6. b
  7. {x}
  8. d''')
  9.  
  10. print(f('c'))
Success #stdin #stdout 0.05s 9668KB
stdin
Standard input is empty
stdout
a
b
c
d