Repositories (1)
marvel_social_network
1 snippets stored for this repo
with open('hero-network.csv','rt') as heroIn: #reads in the csv file skips the headers
heroIn = csv.reader(heroIn)
headers = next(heroIn)
heroes = [row for row in heroIn]