For example I can have the string 'acagtcas' and I want to find if the string has any characters that aren't a, c, g or t. I've tried using not but I haven't been able to make it work. How can I implement this?
How to find if a string has a character which isn't in another string
432 Views Asked by Miguens At
3
You can use a comprehension to check the validity of each letter, and then use
any()
to see whether at least one of them is invalid:Output: