0
這裏是我當前的列表:[0,[],[1,2,3,4],[[5],[6,7]],[8,9 ,10]] 想要從列表中提取和使用索引和切片嵌套項目,這是我想要提取的:[0,2,3,[5,6],8,10]從嵌套列表中提取使用索引和切片
代碼so遠:
list = [0, [], [1,2,3,4], [[5],[6,7]], [8,9,10]]
new_list = list[0], list[2], list[3], list[4]
print("new list is", new_list)
輸出該新的列表爲(0,[1,2,3,4],[[5],[6,7]],[8,9,10]),需要以提取相關項目並格式化列表:[0,2,3,[5,6],8,10]