I like to form a dictionary with two lists, header as the key and score as the values:
#data
header= ["math","science","english"]
score = [80,95,75,81,22,90,20,55,99]
#my attempt
d={}
for i in header:
print(i)
for j in score:
print(j)
Desired output is
{("math":80, 81, 20),("science":95,22,55),("english":75,90,99)}