我的目标是在下面的示例中找到text2
中text1
的位置:
>>> text1='young lady and lived in a firm so outside the cathedral close it was somberly furnished and full of dark young portraits'
>>> text2='the cathedral close it was sombrely furnished and full of dark'
>>> findtext2=text1.find(text2)
>>> findtext2
-1
输出:-1
...这意味着text2
无法找到text1
。
理想输出:42
关于如何解决这个问题的任何想法?
答案 0 :(得分:1)
您正在使用正确的方法find
。只是“笨拙”在text1
拼写不正确,反之亦然(无论你认为哪个适合你)。同时检查text1
和text2
中的空格不匹配。