互联网技术 / 互联网资讯 · 2024年1月11日

Python内置函数-input() 函数的云计算开发详解

Python3.x 中 input() 函数接受一个标准输入数据,返回为字符串类型。

Python2.x 中 input() 相等于 eval(Raw_input()),用来获取控制台的输入。

Raw_input() 将所有输入作为字符串看待,返回字符串类型。而 input() 在对待纯数字输入时具有自己的特性,它返回所输入的数字的类型( int, float )。

注意:input() 和 Raw_input() 这两个函数均能接收字符串,但 Raw_input() 直接读取控制台的输入(任何类型的输入它都可以接收)。而对于 input(),它希望能够读取一个合法的 Python 表达式,即你输入字符串的时候必须使用引号将它括起来,否则它会引发一个 SyntaxError。

除非对 input() 有特别需要,否则一般情况下我们都是推荐使用 Raw_input() 来与用户交互。

注意:Python3 里 input() 默认接收到的是字符串类型。

函数语法:

参数说明:

OpenMagic API

Need more than content? Move into the product flow.

If you are here for model access, pricing, developer docs, or the future API console, the dedicated product path now lives on api.openmagic.ai.

登录免费注册