I need to delete a entry from a list in Python. Here's what it contains:
{'Other': '1.05', 'United States': '93.67', 'Liberia': '3.26', '" alt="" />\n</p>\n</div>': '', 'Canada': '2.02'}
I know I can type:del List_Of_Countries['Canada']
That works perfectly but I am having trouble selecting the one that says " alt="" />\n</p>\n</div>
I think its because of the extra double quote, but I have a few lists that have similar entries so is there an easy way to simply search for the one that either contains "alt" or has " as a value of the key(so I can learn and apply it to other situations)?