每日一课 | Python 如何判断一个字符串是否包含另一个字符串?

在Python中,我们可以使用in运算符或str.find()来检查一个字符串是否包含另一个字符串。

1.运算符

name = "mkyong is learning python 123"
 
if "python" in name:
    print("found python!")
else:
    print("nothing")

输出量

found python!

2. str.find()

name = "mkyong is learning python 123"
 
if name.find("python") != -1:
    print("found python!")
else:
    print("nothing")

输出量

found python!

对于不区分大小写的查找,请在查找之前尝试将String转换为所有大写或小写字母。

name = "mkyong is learning python 123"
 
if name.upper().find("PYTHON") != -1:
    print("found python!")
else:
    print("nothing")

输出量

found python!

参考文献

Python文档str.find()

翻译自: https://mkyong.com/python/python-check-if-a-string-contains-another-string/

推荐阅读--
Python 只用一行代码,可以实现哪些事儿?

当pandas撞上了sql,于是一个强大的pandasql库产生了!
牛了!Python最容易入的10个坑!

球分享

球点赞

球在看

  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值