Qual expressão converte [('x', 1), ('y', 2)] em {'x': 1, 'y': 2}?
[('x', 1), ('y', 2)]
{'x': 1, 'y': 2}
str([('x', 1), ('y', 2)])
list([('x', 1), ('y', 2)])
int([('x', 1), ('y', 2)])
dict([('x', 1), ('y', 2)])