我在python文件中有以下import语句。
from a import b
from a import c
现在,我希望将它合并为一行,如:
from a import b, c
我尝试了Pycharm的Organize进口快捷方式:Ctrl + Shift + O.但是,这没有做到我上面描述的。
在Pycharm还有其他可用的捷径吗?只是好奇。
谢谢!
答案 0 :(得分:1)
转到File > Settings > Editor > Code Style > Python
现在在Python Code Style的导入标签中,选中Join "from" imports with the same source
框,如上面的屏幕截图所示,
现在,只要您通过运行 Ctrl + Alt + O 或{{}运行 Optimize imports
1}},导入语句将根据Style Guide for Python Code