5. Given the dictionary x = {‘k1’: ‘v1’, ‘k2’: ‘v2’, ‘k3’: ‘v3’}, create a dictionary with the opposite mapping i.e., write a program to create the dictionary as : inverted_x = { ‘ v1’ : ‘ k1’ , ‘ v2 ‘ : ‘ k2 ‘ , ‘ v3 ‘ : ‘ k3 ‘ }