fork download
  1. i = "Don’t walk behind me; I may not lead. Don’t walk in front of me; I may not follow. Just walk besides me"
  2.  
  3. i = walk
  4. while i < len(str):
  5. print str[i]
  6. i += 1
  7. for i in string:
  8. print i
Runtime error #stdin #stdout #stderr 0s 23304KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "prog.py", line 3, in <module>
NameError: name 'walk' is not defined