so
my_dict = dict([('a', 1), ('b', 2)])
my_dict_2 = my_dict = dict([('a', 1)])```
these work just fine
```py
x = dict((['a', 1],['b', 2]))
y = dict((['a', 1]))```
but y here does not work. x does, however. All i changed was replaced replaced regular with square brackets. in other words at first put tuples in a list, worked. Put one tuple in a list, worked. Then put two lists in a tuple, worked. Then put one tuple in a list, does not work. Why is this?