方法1:使用 in 方法实现contains的功能:

  1. site = 'http://www.outofmemory.cn/'
  2. if "sharejs" in site:
  3. print('site contains sharejs')
输出结果:site contains sharejs
方法2:使用find函数实现contains的功能
  1. s = "This be a string"
  2. if s.find("is") == -1:
  3. print "No 'is' here!"
  4. else:
  5. print "Found 'is' in the string."

发表评论

邮箱地址不会被公开。 必填项已用*标注