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
  • 177,923
  • 69
  • 381
  • 426
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
  • 44,141
  • 8
  • 97
  • 109
0

in Python 3 you use input function

pyCoder
  • 493
  • 3
  • 9