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.
是否可以在 PyDev 中设置文本换行?
对于 Python,这样的特性尤其重要,因为你不能随意使用换行符。
在 PyDev 中,Source/Wrap 段落菜单 (Ctrl+2, w) 自动换行当前行。您当然应该检查输出是否符合您的预期。
Python 语法取决于缩进。所以自动文本换行会破坏语法。但是你可以告诉 Python 在下一行继续一个语句。请参阅最大行长度下的样式指南::http: //www.python.org/dev/peps/pep-0008/