Python内置input函数的详细介绍
程序员文章站
2022-03-26 21:05:51
...
英文文档:
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编程基本语法快速入门手册_PHP
下一篇: PHP页面静态化实例分享
推荐阅读
-
python中string模块各属性以及函数的用法介绍
-
Python中字符串String的基本内置函数与过滤字符模块函数的基本用法
-
Python编程之Re模块下的函数介绍
-
Python有用的内置函数divmod,id,sorted,enumerate,input,oct,eval,exec,isinstance,ord,chr,filter,vars,zip
-
熟练掌握Python的内置函数,加快编程速度
-
Python中的闭包详细介绍和实例
-
Python 访问限制 private public的详细介绍
-
python函数“超2万字”的介绍(带图超详细)
-
对python中的for循环和range内置函数详解
-
Python内置函数的用法实例教程