write nested list of dict to csv def nestedlist2csv(list, out_file): with open(out_file, 'wb') as f: w = csv.writer(f) ...
確定! 回上一頁