String Python Tutorial

print 'bc' in 'abcd'
print 'n' in 'abcd'
print 'nm' not in 'abcd'
True