Найти подстроку средствами python
Является ли одна строка (по имени needle) частью другой (по имени haystack)
if needle in haystack:
print 'found'
else:
print 'not found'
Является ли одна строка (по имени needle) частью другой (по имени haystack)
if needle in haystack:
print 'found'
else:
print 'not found'