Given two lists of identical length, write code (not in a fu…
Given two lists of identical length, write code (not in a function) to create a dictionary C that maps elements of A (the keys) to elements of B (the values). E.g., C[60] = 1296 for these sample lists: A = [60 71 91 56 50 82 85 54 91 61] B = [1296 1374 1449 1189 1260 1266 1453 1396 1486 1246]
Read Details