python 2to3手动修改

发布于 2024-09-28 03:09:44 字数 81 浏览 8 评论 0原文

有没有办法手动将 python2.x 源代码更改为 python 3.x 。我想使用 lib2to3 可以做到这一点,但我不知道到底如何做到这一点?

Is there a way to change python2.x source code to python 3.x manually. I guess using lib2to3 this can be done but I don't know exactly how to do this ?

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

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

发布评论

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

评论(2

孤云独去闲 2024-10-05 03:09:44

是的,移植就是您在这里看到的。

移植是一项不平凡的任务,需要对代码做出各种决定。例如,您是否想要保持向后兼容性。没有单一、通用的移植解决方案。移植方式取决于您的具体要求。

我发现的将应用程序从 Python 2 移植到 3 的最佳资源是 wiki 页面 PortingPythonToPy3k。该页面包含多种移植方法以及许多对移植工作可能有帮助的资源链接。

Yes, porting is what you are looking here.

Porting is a non-trivial task that requires making various decisions about your code. For instance, whether or not you want to maintaing backward compatibility. There is no single, universal solution to porting. The way you port depends on your specific requirements.

The best resource I have found for porting apps from Python 2 to 3 is the wiki page PortingPythonToPy3k. The page contains several approaches to porting as well as a lot of links to resources that are potentially helpful in porting work.

神经暖 2024-10-05 03:09:44

谢谢。这是我一直在寻找的答案:

from lib2to3.refactor import RefactoringTool, get_fixers_from_package
"""assume `files` to a be a list of all filenames you want to convert"""
r = RefactoringTool(get_fixers_from_package('lib2to3.fixes'))
r.refactor(files, write=True)

Thanks. Here is the answer I was looking for:

from lib2to3.refactor import RefactoringTool, get_fixers_from_package
"""assume `files` to a be a list of all filenames you want to convert"""
r = RefactoringTool(get_fixers_from_package('lib2to3.fixes'))
r.refactor(files, write=True)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文