Hey guys I'm trying to combine these two lists into one dictionary. However, on the second for loop it just keeps going through that and not going back to the first. Any help would be really appreciated. Thank you!
import random chores = ['dishes','bathroom','vacuum','walk dog'] assign = {} emails = ['a','b','c','d'] x=0 while x < 4: for i in chores: randomChore = random.choice(chores) chores.remove(randomChore) for key in emails: assign[key] = randomChore x = x + 1