I have a list of about 50 strings with an integer representing how frequently they occur in a text document. I have already formatted it like shown below, and am trying to c
Make a pair of 2 lists and convert them to dict()
list_1 = [1,2,3,4,5] list_2 = [6,7,8,9,10] your_dict = dict(zip(list_1, list_2))