python 2.7 与 python 3.1

发布于 2024-10-12 20:18:38 字数 76 浏览 3 评论 0原文

一些 python 3 功能和模块已向后移植到 python 2.7 python 3.1 和 python 2.7 之间有哪些显着差异?

Some python 3 features and modules having been backported to python 2.7 what are the notable differences between python 3.1 and python 2.7?

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

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

发布评论

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

评论(2

究竟谁懂我的在乎 2024-10-19 20:18:38

我认为这些资源可能对您有帮助:

正如你所说

一些 python 3 功能和模块已向后移植到 python 2.7

...我会颠倒这句话并说只有几个包 已从 Python 2.x 移植到 3.x。像 PyGTK 这样的优秀库仍然只能在 Python 2 中工作。在许多项目中,迁移可能需要一段时间,因此在您决定使用 Python 之前3 您可能更愿意考虑使用 Python 2 编写自己的项目,同时通过使用 2to3定期。

I think these resources might help you:

And as you said

Some python 3 features and modules having been backported to python 2.7

... I would invert that sentence and say only few packages yet have been ported from Python 2.x to 3.x. Great libraries like PyGTK still only work in Python 2. Migration can take a while in many projects so before you decide to use Python 3 you may rather think about writing your own projects in Python 2, while ensuring compatibility by testing with 2to3 regularly.

静谧幽蓝 2024-10-19 20:18:38

如果你想在 python 2.7 中使用任何 python 3 函数,那么你可以在开始时导入 future 模块,然后你就可以在你的代码中使用它。

If you want to use any of the python 3 function in python 2.7 then you can import future module at the beginning and then you can use it in your code.

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