First time here? Check out the FAQ!
answered 2014-07-15 00:03:33 +0100
You can do:
sage: C = zip(A, B) sage: with open('file_path.csv', 'w') as f: ....: c = csv.writer(f) ....: c.writerows(C)