Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想迁移 Python 代码库以在 Python 2 和 Python 3 中工作,我惊讶地发现,默认情况下,像 flake8 或 pep8 这样的工具错过了一个非常简单的不带括号(print 1而不是print(1))的 print 使用。
print 1
print(1)
我怎样才能缓解这种迁移?
您应该使用 2to3 来发现代码中的问题/不兼容性
https://docs.python.org/3/howto/pyporting.html