如何在另一个字符串中查找字符串

时间:2017-10-08 22:51:29

标签: python

检查字符串是否包含文本的一种方法:

text = 'somewhere over the rainbow'
keyword = 'Rainbow'

if keyword.lower() in str(text).lower():
    print 'yes, it is'

有更短的路吗?

1 个答案:

答案 0 :(得分:0)

您可以使用find()方法:

if text.lower().find(keyword.lower()) != -1:
    print 'yes, it is'