Python有一个关键字“ in”,用于查找一个字符串是否是另一个字符串的子字符串。例如
print('ello' in 'hello world')
输出值
True
如果还需要子字符串的第一个索引,则可以使用find(substr)查找索引。如果此方法返回-1,则表示字符串中不存在子字符串。例如,
print("hello world".find('ello'))
输出值
1
检查字符串“哈利·波特:火焰杯”中是否包含“否”
print("Harry Potter: The Goblet of Fire".find('no'))
输出值
-1