Created
January 27, 2015 05:48
-
-
Save paulohrpinheiro/5e7ee79f39fbb0cd64d1 to your computer and use it in GitHub Desktop.
Python script and CSV example files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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