fork download
  1. x = "abcdef"
  2.  
  3. while i in x:
  4.  
  5. print(i, end=" ")
  6.  
  7.  
Runtime error #stdin #stdout #stderr 0.02s 27704KB
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 'i' is not defined