You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Print out all the state names from the csv# Coded in the "imperative" stylef = open('2012_US_election_state.csv', 'r')print "Opened file:"all_lines = f.readlines()for line in all_lines: columns = line.split(",") print " "+columns[1]print "done ("+str(len(all_lines))+" lines)"