5-th percentile python_每日一课 | Python 如何判断一个字符串是否包含另一个字符串?...

d495bcf29b4e1c33c2f29716b1468c8c.gif 在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/
推荐阅读--

5行Python就能爬取 3000+ 上市公司的信息?

如何使用Python筛选器功能

84 行 JavaScript 代码实现塔式堆叠游戏

dcaece93-2914-eb11-8da9-e4434bdf6706.svg

球分享

deaece93-2914-eb11-8da9-e4434bdf6706.svg

球点赞

0ff3e6728181491827cdadf214571ad7.gif

球在看

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值