欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python input函数使用

程序员文章站 2023-11-08 17:24:46
本文链接:https://www.cnblogs.com/zyuanlbj/p/11905475.html 函数定义 def input(*args, **kwargs): # real signature unknown """ Read a string from standard input. ......

 


 本文链接:


 函数定义

def input(*args, **kwargs): # real signature unknown
    """
    read a string from standard input.  the trailing newline is stripped.
    the prompt string, if given, is printed to standard output without a trailing newline before reading input.
    if the user hits eof (*nix: ctrl-d, windows: ctrl-z+return), raise eoferror.
    on *nix systems, readline is used if available.
    """

函数用法

input() 阻塞式键盘输入,可以添加键盘提示信息。返回值永远是字符串类型。如果需要整型必须要强制类型转换。

name = input()   
print(name)
name = input('请输入名字:')  # 阻塞式 
print(name)