Skip to content

Instantly share code, notes, and snippets.

View angelopoole's full-sized avatar
🔆
keepin it real

Angelo P angelopoole

🔆
keepin it real
View GitHub Profile
import csv
import sys
import locale
locale.setlocale(locale.LC_ALL, '')
csv_filepath = sys.argv[1]
winners = []
losers = []
with open(csv_filepath, 'rb') as csvfile: