In the following code, I am trying to append a list called a to a list of lists b.
a = [5,4] b = [[4],[3],[8]] b[2].append(a)
Python outputs<