Question

Possible Duplicate:
Easy: How to use Raw_input in 3.1

in old style i can entering data with this function

Was it helpful?

Solution

OTHER TIPS

raw_input has been renamed to input. The 2.x input, which eval'd the input, was removed.

You should use input() instead, which uses the behavior of raw_input() from 2.x.

in Python 3 you use input function

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top