fork download
  1. a = "Text"
  2. b = " here."
  3. c = "ABC"
  4. condition = False
  5. print(a + b + c*condition)
  6. condition = True
  7. print(a + b + c*condition)
Success #stdin #stdout 0s 9024KB
stdin
Standard input is empty
stdout
Text here.
Text here.ABC