def create_cubes_dictionary(a): return dict(zip(a, map(lambda x: x**3, a))) print(create_cubes_dictionary([1,2,3]).items())