• Python count()方法:统计字符串出现的次数


    count 方法用于检索指定字符串在另一字符串中出现的次数,如果检索的字符串不存在,则返回 0,否则返回出现的次数。

    count 方法的语法格式如下:

    str.count(sub[,start[,end]])

    此方法中,各参数的具体含义如下:https://www.furuihua.cn/guangdong/

    1. str:表示原字符串;
    2. sub:表示要检索的字符串;
    3. start:指定检索的起始位置,也就是从什么位置开始检测。如果不指定,默认从头开始检索;
    4. end:指定检索的终止位置,如果不指定,则表示一直检索到结尾。


    【例 1】检索字符串“c.biancheng.net”中“.”出现的次数。

    >>> str = "c.biancheng.net"
    >>> str.count('.')
    2


    【例 2】

    >>> str = "c.biancheng.net"
    >>> str.count('.',1)
    2
    >>> str.count('.',2)
    1

    前面讲过,字符串中各字符对应的检索值,从 0 开始,因此,本例中检索值 1 对应的是第 2 个字符‘.’,从输出结果可以分析出,从指定索引位置开始检索,其中也包含此索引位置。

    【例 3】

    >>> str = "c.biancheng.net"
    >>> str.count('.',2,-3)
    1
    >>> str.count('.',2,-4)
    0

  • 相关阅读:
    Remove Element
    Binary Tree Inorder Traversal
    Symmetric Tree
    Roman to Integer
    Search Insert Position
    Reverse Integer
    Pascal's Triangle
    Merge Sorted Array
    Same Tree
    Visual Studio Code 做PHP开发
  • 原文地址:https://www.cnblogs.com/furuihua/p/12640673.html
Copyright © 2020-2023  润新知