Dictionary Python Tutorial

myDictionary = {'color':'blue', 'speed':'fast', 'number':1, 5:'number'}
swapDictionary = {}
for key, val in myDictionary.iteritems():
    swapDictionary[val] = key
print swapDictionary