matheus__serpa

Untitled

Jun 25th, 2020
1,512
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1.  
  2. import unicodecsv
  3.  
  4. with open('cat_acidentes.csv', 'rb') as f:
  5.     dados = list(unicodecsv.DictReader(f, delimiter=';'))
  6.  
  7. print(dados[0])
Advertisement
Add Comment
Please, Sign In to add comment