- 1
raw_input is not defined this error occurred always when I used raw input in my python program?
2 Answers
+ 4
you probably run python2 code inside python3 interpreter...
raw_input is only available in python2, not in python3
sololearn run python3
0
Thanks