You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
https://www.learnpython.org/en/Input_and_Output mentions raw_input(), which is a Python 2.x function. It was removed in Python 3 and replaced by input(). The interpreter uses Python 3.5, so mentioning raw_input() leads to an error as you can see below.
The text was updated successfully, but these errors were encountered:
https://www.learnpython.org/en/Input_and_Output mentions raw_input(), which is a Python 2.x function. It was removed in Python 3 and replaced by input(). The interpreter uses Python 3.5, so mentioning raw_input() leads to an error as you can see below.
The text was updated successfully, but these errors were encountered: