So I have a list from which i want to remove something like a sub list. I don't know how to call it exactly so i couldn't find any results searching for an answer.
list = [[0, 1, 0, 0], [0, 1, 1, 1], [1, 1, 0, 0], [0, 0, 0, 0]]
I just want to remove one of those 4 brackets, for example the first one. Should i use "remove" or "delete" or how do i do that?
list = [[0, 1, 1, 1], [1, 1, 0, 0], [0, 0, 0, 0]]