码迷,mamicode.com
首页 > 编程语言 > 详细

Python内置函数(32)——input

时间:2016-11-02 14:25:46      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:ror   int   blog   input   utils   tput   数值   span   strong   

英文文档:

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内置函数(32)——input

标签:ror   int   blog   input   utils   tput   数值   span   strong   

原文地址:http://www.cnblogs.com/sesshoumaru/p/6014318.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!