Detailed introduction to Python's built-in input function

高洛峰
Release: 2017-03-21 10:36:06
Original
3704 people have browsed it

English documentation:

input([prompt])

If the prompt argument is present, it is written to standard output without a trailing newline. The function then reads a line from input, converts it to a string (stripping a trailing newline), and returns that. When EOF is read, EOFError is raised

Instructions:

 1. If the promat parameter is provided, the parameter value is first output to the standard output, and No line breaks. FunctionReads the value entered by the user and converts it into a string.

>>> s = input('please input your name:')
please input your name:Ain
>>> s
'Ain'
Copy after login

The above is the detailed content of Detailed introduction to Python's built-in input function. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!