亿迅智能制造网
工业4.0先进制造技术信息网站!
首页 | 制造技术 | 制造设备 | 工业物联网 | 工业材料 | 设备保养维修 | 工业编程 |
home  MfgRobots >> 亿迅智能制造网 >  >> Industrial programming >> Python

带有示例的 Python 字符串计数()

Python 计数

count() 是 Python 中的内置函数。它将返回字符串中给定元素的总数。计数从字符串的开头开始直到结尾。也可以指定要从哪里开始搜索的开始和结束索引。

在本 Python 教程中,您将学习:

PythonString Count() 的语法

Python计数函数语法:

string.count(char or substring, start, end)

Python语法参数

返回值

count() 方法将返回一个整数值,即给定字符串中给定元素的计数。如果在给定字符串中找不到该值,则返回 0。

示例 1:字符串的计数方法

下面的例子展示了 count() 函数对字符串的作用。

str1 = "Hello World"
str_count1 = str1.count('o')  # counting the character “o” in the givenstring
print("The count of 'o' is", str_count1)

str_count2 = str1.count('o', 0,5)
print("The count of 'o' usingstart/end is", str_count2)

输出:

The count of 'o' is 2
The count of 'o' usingstart/end is 1

示例 2:计算给定字符串中字符的出现次数

下面的例子展示了一个字符在给定字符串中的出现以及使用开始/结束索引。

str1 = "Welcome to Guru99 Tutorials!"
str_count1 = str1.count('u')  # counting the character “u” in the given string
print("The count of 'u' is", str_count1)

str_count2 = str1.count('u', 6,15)
print("The count of 'u' usingstart/end is", str_count2)

输出:

The count of 'u' is 3
The count of 'u' usingstart/end is 2

示例 3:计算给定字符串中子字符串的出现次数

以下示例显示了给定字符串中子字符串的出现以及使用开始/结束索引。

str1 = "Welcome to Guru99 - Free Training Tutorials and Videos for IT Courses"
str_count1 = str1.count('to') # counting the substring “to” in the givenstring
print("The count of 'to' is", str_count1)
str_count2 = str1.count('to', 6,15)
print("The count of 'to' usingstart/end is", str_count2)

输出:

The count of 'to' is 2
The count of 'to' usingstart/end is 1

总结:


Python

  1. Java String indexOf() 方法与子字符串和示例
  2. Java String compareTo() 方法:如何与示例一起使用
  3. Python Print() 语句:如何通过示例打印
  4. Python String strip() 函数与示例
  5. Python String format() 举例说明
  6. Python String find() 方法及示例
  7. 带有示例的 Python Lambda 函数
  8. 带有示例的 Python round() 函数
  9. 带有示例的 Python map() 函数
  10. Python Timeit() 与示例
  11. 集合中的 Python 计数器示例
  12. Python 中的 type() 和 isinstance() 示例