Skip to content

Instantly share code, notes, and snippets.

@paulohrpinheiro
Created January 27, 2015 05:48
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 paulohrpinheiro/5e7ee79f39fbb0cd64d1 to your computer and use it in GitHub Desktop.
Save paulohrpinheiro/5e7ee79f39fbb0cd64d1 to your computer and use it in GitHub Desktop.
Python script and CSV example files
Data Vendedor Total
10/10/14 Paulo 10000
10/10/14 João 500000
01/01/15 Lucas 20008373
05/01/15 Mateus 873422,3
10/01/15 Marcos 213643983,98
#!/usr/bin/env python3
import csv
with open('exemplo.csv') as handler:
[print(col) for col in csv.reader(handler)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment