I have a list assigned to the variable my_list.
my_list = [[(1, 2)], [(4, 8), (2, 3)], [(1, 6), (6,7), (8,9)]].
I need to find the length of my_list, but len(my_list) only returns 3.
I want it to return 6. I am new to python. Is there any Python function that will return the full length of my_list including the nested lists?