fork download
  1. word="char"
  2. number=range(len(word))
  3. sep=' '
  4. for index in number:
  5. char=sep*index + word[index]
  6. print(char)
Success #stdin #stdout 0.01s 7052KB
stdin
Standard input is empty
stdout
c
 h
  a
   r