How to write a dictionary with multiple keys, each with multiple values to a csv in Python?
I have a dictionary that looks like this… cla_1results= {“Tom”:[1,7,4],”Dunc”:[3,9,4],”Jack”:[1,3,5]} I want to write this dictionary to a csv so that it is in the following format Don’t have …