raw_input() 在 python 3.1 中已弃用?

发布于 2024-09-30 03:28:46 字数 238 浏览 5 评论 0原文

可能的重复:
简单:如何在 3.1 中使用 Raw_input

在旧版本中 使用 3.1 中的 Raw_input我可以用这个函数输入数据

Possible Duplicate:
Easy: How to use Raw_input in 3.1

in old style i can entering data with this function

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

箜明 2024-10-07 03:28:46

raw_input 已重命名为 input。对输入进行评估的 2.x input 已被删除。

raw_input has been renamed to input. The 2.x input, which eval'd the input, was removed.

平定天下 2024-10-07 03:28:46

您应该改用 input(),它使用 2.x 中 raw_input() 的行为。

You should use input() instead, which uses the behavior of raw_input() from 2.x.

树深时见影 2024-10-07 03:28:46

在Python 3中你使用输入函数

in Python 3 you use input function

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文