Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Possible Duplicate: Easy: How to use Raw_input in 3.1
in old style i can entering data with this function
raw_input is now input per http://docs.python.org/dev/py3k/whatsnew/3.0.html
input
Add a comment
raw_input has been renamed to input. The 2.x input, which eval'd the input, was removed.
raw_input
eval
You should use input() instead, which uses the behavior of raw_input() from 2.x.
input()
raw_input()
in Python 3 you use input function
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.