check if there is a specific character in string python code example
Example 1: python str contains word
fullstring = "StackAbuse"
substring = "tack"
if substring in fullstring:
print "Found!"
else:
print "Not found!"
Example 2: python check if character is letter
>>> 'A'.isalpha()
True
>>> '1'.isalpha()
False