Skip to content

Instantly share code, notes, and snippets.

@koji
Created June 11, 2015 20:43
Show Gist options
  • Save koji/7bd20e35b502e4fb9d1f to your computer and use it in GitHub Desktop.
Save koji/7bd20e35b502e4fb9d1f to your computer and use it in GitHub Desktop.
python create csv file
f = open('test.csv', 'ab')
csvWriter = csv.writer(f)
csvWriter.writerow(ramenInfo)
f.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment