Python基础语法-菜鸟教程-函数⽤法:input()和raw_input()
1.input()和raw_input()⽤法
(1).input()
1)⽤法解释
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.
“”"
pass
2)使⽤实例
eg:有如下实例
菜鸟编辑器pythonvalue=input()
print(value)
输出结果为:
1
1
<class ‘str’>
(2)raw_input()
Python3将raw_input和input进⾏整合成了input…去除了raw_input()函数…
其接受任意输⼊, 将所有输⼊默认为字符串处理,并返回字符串类型
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论