I have a list similar to this
numbers=[['3','4','5'],['',''],['6','7','8']
and i want to remove the
['','']
sublist completely so the final numbers list should look like
numbers=[['3','4','5'],['6','7','8']]
ive tried to use
numbers[index].remove('')
but thats just giving me a list index out of range error