Using csvreader against a gzipped file in Python. Use the gzip module: with gzip.open(filename, mode='rt') as f: reader = csv.reader(f) #.
確定! 回上一頁