How can I check if a string contains ANY letters from the alphabet? December 25, 2022 by Tarik Regex should be a fast approach: re.search('[a-zA-Z]', the_string)