check if a string contains all letters of the alphabet python code example
Example: check if string contains alphabets python
import re
print(re.search('[a-zA-Z]', "anything"))
import re
print(re.search('[a-zA-Z]', "anything"))