fullstring = "StackAbuse"
substring = "tack"
if fullstring.find(substring) != -1:
print "Found!"
else:
print "Not found!"
fullstring = "StackAbuse"
substring = "tack"
if substring in fullstring:
print("Found!")
else:
print("Not found!")
# Output - Found!
fullstring = "StackAbuse"
substring_2 = "abuse"
if substring_2 in fullstring:
print("Found!")
else:
print("Not found!")
# Output - Not found!
# (Remember this is case-sensitive)
>>> string = "Hello World"
>>> # Check Sub-String in String
>>> "World" in string
True
>>> # Check Sub-String not in String
>>> "World" not in string
False
if substring in string:
substring_found = True
fullstring = "StackAbuse"
substring = "tack"
if substring in fullstring:
print "Found!"
else:
print "Not found!"
fullstring = "StackAbuse"
substring = "tack"
if substring in fullstring:
print("Found!")
else:
print("Not found!")
if "blah" not in somestring:
continue
if word in mystring:
print('success')
string = "This contains a word" if "word" in string: print("Found") else: print("Not Found")
string = "My favourite programming language is Python"
substring = "Python"
if substring in string:
print("Python is my favorite language")
elif substring not in string:
print("Python is not my favourite language")
any(not c.isalnum() for c in string)