公告
财富商城
积分规则
提问
发文
2019-02-09 07:30发布
聊天终结者
What is more pythonic ?
import os import sys import getopt ...
or
import os,sys,getopt,...
?
From PEP 8:
Imports should usually be on separate lines, e.g.:
Yes:
import os import sys
No:
import sys, os
it's okay to say this though:
from subprocess import Popen, PIPE
最多设置5个标签!
From PEP 8:
Imports should usually be on separate lines, e.g.:
Yes:
No:
it's okay to say this though: