Lar*_*gas 25 python import parentheses
最近看到像这样的进口
from module import (function, another_function,
another_function)
Run Code Online (Sandbox Code Playgroud)
看起来这样做是为了能够import通过多行来扩展语句.在这种情况下,我通常只是这样导入
from module import function, another_function, \
another_function
Run Code Online (Sandbox Code Playgroud)
在这种情况下括号究竟做了什么,他们认为是不好的做法?