3

Possible Duplicate:
Easy: How to use Raw_input in 3.1

in old style i can entering data with this function

Community
  • 1
  • 1
elgianka
  • 223
  • 2
  • 11

4 Answers4

3

raw_input is now input per http://docs.python.org/dev/py3k/whatsnew/3.0.html

meder omuraliev
  • 183,342
  • 71
  • 393
  • 434
3

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

0

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

g.d.d.c
  • 46,865
  • 9
  • 101
  • 111
0

in Python 3 you use input function

pyCoder
  • 503
  • 3
  • 9