Junior — Senior
What will a dictionary with conflicting keys show?
livecode
Task condition
Determine what output the program will produce when executing the following code, where a dictionary with keys 1, 1.0, and True is created.
d = {1: 'a', 1.0: 'b', True: 'c'}
print(d)