so I'm trying to remove numbers from a string using a list of numbers from 0,9. I've been trying to figure this out for quite a while now but I haven't gotten far with it, i'll put the code down here, hopefully someone can help me with this. I don't wan't to use ways that i'm not familiar with like lambda or something I saw earlier here on stackoverflow.
string = input("Type a string: ")
numbers = ["0","1","2","3","4","5","6","7","8","9"]
start = 0
for i in range(len(string)):
if(string[i] == numbers[start]):
string.remove(i)
else:
print("Banana")
print(string)