Python Learning Notes

Source: Internet
Author: User

1. When you enter name = raw_input() and press ENTER, the python interactive command line is waiting for your input. At this point, you can enter any character and then press ENTER to complete the input.

2.

However, when the program runs, there is no prompt to tell the user: "Hey, just enter your name", this looks very unfriendly. Fortunately, it allows raw_input you to display a string to prompt the user, so we change the code to:

name = raw_input(‘please enter your name: ‘)print ‘hello,‘, name

Run this program again, you will find that the program runs, will first print out please enter your name: , so that the user can follow the prompts, enter the name after the hello, xxx output:

C:\Workspace> python hello.pyplease enter your name: Michaelhello, Michael

Python Learning Notes

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.