So,I need to iterate over a dictionary in python where the keys are a tuple and the values are integers. I only need to print out the keys and values. I tried this:
for key,value in dict:
but didn't work because it assigned the first element of the tuple to the key and value and the second to the value.
So how should I do it?