Find the output of the following program:
li = [1, 2, 3, 4] li.append([5,6,7,8]) print(li)
[1,2,3,4,5,6,7,8]
[1,2,3,4]
[1,2,3,4,[5,6,7,8]]
[1,2,3,4][5,6,7,8]
This question is part of this quiz :