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