您的位置:

Python 程序:计算字符串中的字符出现次数

写一个 Python 程序来计算字符串中的字符的出现次数,并给出一个实例。这个 python 程序允许您输入字符串和字符。

# Python Program to Count Occurrence of a Character in a String

string = input("Please enter your own String : ")
char = input("Please enter your own Character : ")

count = 0
for i in range(len(string)):
    if(string[i] == char):
        count = count + 1

print("The total Number of Times ", char, " has Occurred = " , count)

这里,我们使用 For Loop 来迭代一个字符串中的每个字符。在 Python For Loop 中,我们使用 If 语句来检查字符串中的任何字符是否等于给定的字符。如果为真,则计数=计数+ 1。

字符串=教程网关 ch = t 计数= 0

对于循环第一次迭代:对于范围(11)中的 I,如果(字符串[i] == char) 如果(t = = t)–条件为真。 计数= 0 + 1 = > 1

第二次迭代:如果(u = = l)–条件为假,范围(11) 中的 1。

第三次迭代:对于范围(11)中的 2,如果(字符串[2] == char) = >如果(t = = t)–条件为真。 计数= 1 + 1 = > 2

对剩余的程序迭代进行同样的操作

计算字符出现次数的 Python 程序示例 2

这个 Python 计算字符串程序中一个字符的总出现次数与上面相同。然而,我们只是将 For 循环替换为 While 循环。

# Python Program to Count Occurrence of a Character in a String

string = input("Please enter your own String : ")
char = input("Please enter your own Character : ")
i = 0
count = 0

while(i < len(string)):
    if(string[i] == char):
        count = count + 1
    i = i + 1

print("The total Number of Times ", char, " has Occurred = " , count)

字符串输出中 python 字符的出现

Please enter your own String : python programs
Please enter your own Character : p
The total Number of Times  p  has Occurred =  2
>>> 
Please enter your own String : hello
Please enter your own Character : l
The total Number of Times  l  has Occurred =  2

计算字符总出现次数的 Python 程序示例 3

给定字符程序的 Python 总出现次数与第一个示例相同。但是,这一次,我们使用了函数的概念来分离逻辑。

# Python Program to Count Occurrence of a Character in a String

def count_Occurrence(ch, str1):
    count = 0
    for i in range(len(string)):
        if(string[i] == char):
            count = count + 1
    return count

string = input("Please enter your own String : ")
char = input("Please enter your own Character : ")

cnt = count_Occurrence(char, string)
print("The total Number of Times ", char, " has Occurred = " , cnt)

字符串输出中 python 字符的出现

Please enter your own String : Python tutorial
Please enter your own Character : t
The total Number of Times  t  has Occurred =  3
>>> 
Please enter your own String : hi
Please enter your own Character : g
The total Number of Times  g  has Occurred =  0
Python 程序:计算字符串中的字符出现次数

2022-07-24
Python 程序:计算字符串中总字数

2022-07-24
Python 程序:计算字符串中的字符总数

2022-07-24
Python函数str_count,统计字符串出现的次数

2023-05-13
Python 程序:删除字符串中字符的第一次出现

2022-07-24
Python count函数用法:统计字符串中子字符串出现的

2023-05-13
Python 程序:寻找字符串中的字符的第一次出现

2022-07-24
Python 程序:删除字符串中字符的最后一次出现

2022-07-24
Python 程序:寻找字符串中的字符的最后一次出现

2022-07-24
Python 程序:计算字符串中元音数量

2022-07-24
统计某个字符出现的次数

2023-05-19
Python 程序:计算字符串长度

2022-07-24
Python 程序:计算一对字符串中匹配字符数

2022-07-24
Python的字符串计数方法应用与示例

2023-05-12
Python 程序:计算字符串中的字符频率

2022-07-24
计算字符串长度python,计算字符串长度Python

2022-11-30
Python 程序:替换字符串中字符

2022-07-24
Python 程序:查找字符串中的单词和字符数

如何计算 python 字符串中的单词和字符? 在这个字符串 python 程序中,我们需要计算一个字符串中的字符和单词数。让我们检查一个例子“我爱我的国家”在这个字符串中,我们的字数为 4,字符数为

2023-12-08
Python 程序:查找字符串中的字符的所有出现

2022-07-24
Python实现字母字符排序和统计的示例

2023-05-13