Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1104453
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T01:29:12+00:00 2026-05-17T01:29:12+00:00

In a tutorial, I read that that there is a difference between input and

  • 0

In a tutorial, I read that that there is a difference between input and raw_input. I discovered that they changed the behavior of these functions in the Python 3.0. What is the new behavior?

And why in the python console interpreter this

x = input()

Sends an error but if I put it in a file.py and run it, it does not?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T01:29:13+00:00Added an answer on May 17, 2026 at 1:29 am

    In python 2.x, raw_input() returns a string and input() evaluates the input in the execution context in which it is called

    >>> x = input()
    "hello"
    >>> y = input()
    x + " world"
    >>> y
    'hello world'
    

    In python 3.x, input has been scrapped and the function previously known as raw_input is now input. So you have to manually call compile and than eval if you want the old functionality.

    python2.x                    python3.x
    
    raw_input()   --------------> input()               
    input()  -------------------> eval(input())     
    

    In 3.x, the above session goes like this

    >>> x = eval(input())
    'hello'
    >>> y = eval(input())
    x + ' world'
    >>> y
    'hello world'
    >>> 
    

    So you were probably getting an error at the interpretor because you weren’t putting quotes around your input. This is necessary because it’s evaluated. Where you getting a name error?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any book or links that I can read some tutorial about the
I read the tutorial, https://developers.google.com/apps-script/articles/building-sites-app-part2 that uses spreadsheet service in Google sites. The code
To review regular expresions I read this tutorial . Anyways that tutorial mentions that
I read some tutorial in Google App Engine, in those tutorial there is same
So I read the tutorial from some web, and they did something like this.
I read some tutorial about sockets in Java, and I found that different examples
I'm a confused newbie. I read in a tutorial that you create a javascript
There are some documents to be indexed, that means I need to read the
Almost all of the examples in the jQuery tutorials that I've read, usually use
I'm trying to read some OpenGL tutorials on the net. the problem is that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.