若要输出的列表为[2, 3, 4, 5, 5],则横线上应填写的数字分别是?
list = [1, 2, 3, 4, 5]
list.append(___)
list.pop(___)
print(list)
0, 5
5, 0
1, 5
5, 4