Question #234

Author: admin
tags: Python  
my_list = [['a', 'b'] * 2] * 2
print(my_list) # ??
What will be printed?
['a', 'b', 'a', 'b', 'a', 'b', 'a', 'b']
[['a', 'b'], ['a', 'b'], ['a', 'b'], ['a', 'b']]
[['a', 'b', 'a', 'b'], ['a', 'b', 'a', 'b']]
Rate the difficulty of the question:
easyhard