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

Python内置函数-raw_input()函数的详细解析

描述

Python Raw_input() 用来获取控制台的输入。

Raw_input() 将所有输入作为字符串看待,返回字符串类型。

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

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

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

语法

以下是 Raw_input() 方法的语法:

Raw_input([ProMpt])

参数

ProMpt: 可选,字符串,可作为一个提示语。

实例

以下实例展示了 Raw_input() 函数的使用方法:

云计算开发:Python内置函数-raw_input() 函数详解

云计算开发:Python内置函数-raw_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.

登录免费注册