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
#CSV file in https://docs.google.com/spreadsheets/d/1tnMbbfBJH2fnNcn73t1oypcq8HrmFJZcdaek0CWapxY/edit?usp=sharing | |
import csv | |
import random | |
voters = [] | |
#load csv into array of arrays | |
with open('Voto ordenado - Respostas ao formulário 1.csv', 'r') as csvfile: | |
lineReader = csv.DictReader(csvfile, delimiter=',') | |
for row in lineReader: |
NewerOlder