Python Interview questions - lik
(Python version 3.9 or later version)
What would be the result of executing the following code?
list({'a':1,'A':2,'a':3})
['a', 1, 'A', 2]
['a', 1, 'A', 2, 'a', 3]
[1, 2, 3]
['a', 'A']
gk