The problem consists of a list of strings where each string has two elements and can be either a letter or a number, we want to create a function that takes this list as a parameter/argument and delete all those strings that have a number in it, I tried this code down below but it does not work.
def erase(lista):
for word in lista:
for letter in range (len(word)):
if letter in [1234567890]:
del word
erase(["a3", "b3", "aa"])