FIFTH ASSIGNMENT 1)Get the key of a minimum value from the following dictionary. Given Input: sample_dict = { 'Physics': 82, 'Math': 65, 'history': 75 } Expected output: Math SOL: d = {'Physics':82,'Maths':65,"history":75} m = float('inf') ans = "" for k,v in d.items(): if(v