0
Code help. Does this run?
er = raw_input("what is this place?") print(er)
2 Answers
+ 2
raw_input is Python 2
Check the course for Python 3
https://www.sololearn.com/learn/Python/2426/
+ 1
Use input() only.
er = raw_input("what is this place?") print(er)