fork download
  1. widths = [10, 20, 30]
  2. for i, width in enumerate(widths):
  3. print(i, width)
Success #stdin #stdout 0.01s 7296KB
stdin
Standard input is empty
stdout
(0, 10)
(1, 20)
(2, 30)