当前位置: 移动技术网 > IT编程>脚本编程>Python > Python input函数使用

Python input函数使用

2019年11月21日  | 移动技术网IT编程  | 我要评论

小学pep英语,紧身牛仔裤美女,大学生社区

 


 本文链接:


 函数定义

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)

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网