I have an item in list that contains just a quotation mark and a comma (",) and I can't seem to pop that item from the list
I've tried
for item in my_list:
if item == '",':
my_list.pop(my_list.index(item))
I've also tried
for item in my_list:
if item == '\",':
my_list.pop(my_list.index(item))
I've gotten no luck, is there anything I'm missing