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)
上一篇: 千张热量有多少?健康饮食没烦恼!
下一篇: 红薯干吃了会长胖吗,它有什么独特的功效