Python Basic Learning 2_ Interactive input

Source: Internet
Author: User

Input is used to interact with the user, just like the shell script read.

Example 1:

#!/usr/bin/env python

#_ *_ Coding:utf-8 _*_

Name = Raw_input (' Please enter your name: ')

Age = Raw_input (' Ages: ')

Job = Raw_input (' work: ')

Salary = Raw_input (' Salary: ')

Print ""

----------------------------

Personal Information of%s:

Name:%s

Age:%s

Job:%s

Salary:%s

----------------------------

"% (Name,name, age,job,salary)

The parentheses correspond to the first%s (name), the second%s (name), the third%s (age) ....

%s represents a string, the default Raw_input input character is a string, and Python has the concept of a data type.


This article is from the "Chhhsdbohe" blog, make sure to keep this source http://437972.blog.51cto.com/427972/1835469

Python Basic Learning 2_ Interactive input

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.