For some reason the second loop in this piece of python code seems to want to skip over for no reason I don't know why but it reads the first line of the for loop and then skips it without executing any of the code inside.
For some reason removing the first for loop allows the second one to run and I don't why or how.
input("nothing")
with open ("Rainbow Six Siege Survey.csv") as csv_file:
csv_reader = csv.DictReader(csv_file)
line_count = 0
WinLoss = []
KillDeath = []
Names = []
Time = []
for i in range(0, len(list(csv_reader))):
WinLoss.append(0)
KillDeath.append(0)
Names.append("")
Time.append("")
for row in csv_reader:
#if line_count == 0:
#print("The columns are: {",".join(row)}")
#else:
#Names[line_count-1] = row["UserName"]
#linecount+=1
print("One")
print(KillDeath, WinLoss, Names, Time)```