Python 的版本

发布于 2024-10-09 22:35:08 字数 117 浏览 5 评论 0原文

我需要编写符合 2.5.1 的 Python。我的机器上目前有 Python 3.1。如果我制作一个 PyDev 项目并将语法设置为“2.5”,我编写的代码是否兼容(语法和语义上)?或者我必须去下载旧版本的Python?

I need to write Python compliant with 2.5.1. I currently have Python 3.1 on my machine. If I make a PyDev project and set the grammar to "2.5", will the code I write be compatible (both syntactically and semantically)? Or must I go download an older version of Python?

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

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

发布评论

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

评论(3

凉城已无爱 2024-10-16 22:35:08

Python 3 与 Python 不向后兼容 2,所以如果你想编写兼容的代码,你需要下载并安装Python 2.5。

Python 3 is not backwards-compatible with Python 2, so you do need to download and install Python 2.5 if you want to write compatible code.

未蓝澄海的烟 2024-10-16 22:35:08

PyDev 的语法设置仅更改语法突出显示。要知道您的代码是否有效,您必须使用 Python 2.5 运行它,所以您必须下载它。

PyDev's grammar setting only changes the syntax highlighting. To know if your code works you must run it with Python 2.5, so yes you must download it.

走过海棠暮 2024-10-16 22:35:08

我认为将语法从 3.1 设置为 2.5 是一个坏主意。只需下载较旧的 python 2.5 版本并使用编译器和库即可。在主要版本之间,API 签名会发生变化,并且会添加新功能。您无法在 pydev 中进行高版本开发并在不遇到问题的情况下编译另一个版本。此外,Python 3.1 向后不兼容 Python 2.x(例如 print 是一个函数),因此如果需要的话,最好下载并使用 Python 2.5。

I think it is a bad idea to set the grammar to 2.5 from 3.1. Just download the older python 2.5 version and use the compiler and the libraries with it. Between major versions changes happen to the API signatures and new features get added. You cannot afford to develop in high version in pydev and compile for another without encountering problem. Moreover Python 3.1 is backwards incompatible with Python 2.x (print is a function for e.g), so it is better you download and use Python 2.5 if that is the requirement.

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