fork download
  1. x = "abcd"
  2. for i in range(len(x)):
  3. print(i, end=' ')
  4.  
Success #stdin #stdout 0.04s 9724KB
stdin
8
stdout
0 1 2 3