python 2.7 与 python 3.1
一些 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为这些资源可能对您有帮助:
正如你所说
...我会颠倒这句话并说只有几个包 已从 Python 2.x 移植到 3.x。像 PyGTK 这样的优秀库仍然只能在 Python 2 中工作。在许多项目中,迁移可能需要一段时间,因此在您决定使用 Python 之前3 您可能更愿意考虑使用 Python 2 编写自己的项目,同时通过使用 2to3定期。
I think these resources might help you:
And as you said
... 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.
如果你想在 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.