fork download
  1. one = [(1, 2), (3, 4)]
  2. for o in one:
  3. print(o, end='')
Success #stdin #stdout 0.1s 10104KB
stdin
Standard input is empty
stdout
(1, 2)(3, 4)