Qpython 3: While using input function it prompts for user to enter input but not able read it | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Qpython 3: While using input function it prompts for user to enter input but not able read it

>>name=input ('enter your name:') enter your name: Nitin error: name 'Nitin' is not defined

6th Aug 2017, 5:12 PM
Nitin G Dagaya
Nitin G Dagaya - avatar
2 Answers
+ 4
This error will be shown on QPython (which implement Python2.7 interpreter), not in QPython3 (which implement Python3)... In Python2.7, 'input' function/statement doesn't work as 'input' implementation in Python3 (no more a statement, only a function)... In Python2.7 'raw_input' function is required for getting string user input, else with 'input' Python will try to parse the user entry (in the case you've provided, Python doesn't find a variable named 'Nitin'... if it was found it, you will get its value rather than the name itself ^^) In Python3, new 'input' behaviour is same as Python2.7 'raw_input' ;P
7th Aug 2017, 8:23 AM
visph
visph - avatar