List methods mylist = [1, 2, 3, 4, 5] mylist.append(10) => [1, 2, 3, 4, 5, 10] mylist.pop(4) => [1, 2, 3,… adminPosted on 24 June 2023 Python