from hashlib import sha256
import csv
with open ('source.csv', 'r' ) as file:
reader = csv.reader ( file )
dic = {}
for hash in range ( 1000, 10000):
hasher = sha256 ( b'%i' % hash ).hexdigest ()
hash = dic [ hasher ] = hash
for row in reader:
name = row [ 0 ]
for key in row [ 1: ]:
hack = ( name, dic [ key ] )
for r in hack:
with open ( 'out.csv', 'w', newline = '' ) as out:
writer = csv.writer ( out )
writer.writerow ( hack )
my write is:
peter,5104
write should be like this:
alex,2218
emma,4215
peter,5104
Ok so in each iteration of
for r in hack:
loop you open the same file for writing erasing previous contents. You can move opening of the file outside the outer most loop. Code should look likekeep in mind that file is open for entirety of this code, and this has some implications.