I have two lists, one with names and one with 4 scores for each player. All I want to do is have a dictionary or tuple (it doesn't matter, whichever would work better) that has the name and the four scores for them.
list1 = ['brian', 'lauren', 'bob']
list2 = ['12', '19', '45', '33', '10', '20', 51', '16', '38', '90', '66', '22']
the dictionary should look like:
finalDict = {"brian": 12, 19, 45, 33, "lauren": 10, 20, 51, 16, ect.}
Any help would be greatly appreciated!