fork download
  1. A = ['a', 'i', 'u', 'e', 'o']
  2. j = 0
  3. for i in A:
  4. j += 1
  5. print(i + '-' + str(j))
  6.  
Success #stdin #stdout 0.02s 9140KB
stdin
Standard input is empty
stdout
a-1
i-2
u-3
e-4
o-5