Python--> Basic-->002-->input & Raw_input

Source: Internet
Author: User

First, the difference between input and raw_input

1, raw_input () description

A = raw_input ("Input content:")
Print A,type (a)

Output Result:

Input content:a
A <type ' str ' >

Input content:1000
<type ' str ' >

From the above you can see that the Raw_input method is passed to the program, which by default is a string.

2. Input () description

A = input ("Input content:")
Print A,type (a)

Output Result:

Input content:1
1 <type ' int ' >

Input content:b

Nameerror:name ' B ' is not defined

Input content: "B"
b <type ' str ' >

Input content:1+1
2 <type ' int ' >

From the above can be seen through the input method passed to the program, if it is a string, you have to enclose the quotation marks, otherwise it will be an error, if it is a numeric value, it will be treated as an int type of data passed to the variable.

Python--> Basic-->002-->input & Raw_input

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.