首页  >  文章  >  后端开发  >  Python内置input函数的详细介绍

Python内置input函数的详细介绍

高洛峰
高洛峰原创
2017-03-21 10:36:063654浏览

英文文档:

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

 

说明:

  1. 如果提供了promat参数,首先将参数值输出到标准的输出,并且不换行。函数读取用户输入的值,将其转换成字符串

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

 

以上是Python内置input函数的详细介绍的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn