Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ajinkz/f8af42e4f06d2a791fdc318b469974bf to your computer and use it in GitHub Desktop.
Save Ajinkz/f8af42e4f06d2a791fdc318b469974bf to your computer and use it in GitHub Desktop.
python - write tuples to csv
with open('test.csv', 'w') as f:
writer = csv.writer(f , lineterminator='\n')
for tup in gdax_times_trades:
writer.writerow(tup)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment