Raw_input () deprecated in python 3.1?

Possible duplicate:
Simplicity: using Raw_input in version 3.1

in the old style, I can enter data using this function

+3
source share
4 answers

raw_inputwas renamed to input. 2.x input, which eval'd was deleted.

+3
source

Instead, you should use input()one that uses the behavior raw_input()from 2.x.

0
source

in Python 3 you use the input function

0
source

Source: https://habr.com/ru/post/1772875/


All Articles