日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区

RELATEED CONSULTING
相關咨詢
選擇下列產品馬上在線溝通
服務時間:8:30-17:00
你可能遇到了下面的問題
關閉右側工具欄

新聞中心

這里有您想知道的互聯(lián)網營銷解決方案
Python程序:計算字符串中的字符出現(xiàn)次數

創(chuàng)新互聯(lián)Python教程:

創(chuàng)新互聯(lián)公司專注于宜良企業(yè)網站建設,自適應網站建設,商城網站開發(fā)。宜良網站建設公司,為宜良等地區(qū)提供建站服務。全流程按需定制開發(fā),專業(yè)設計,全程項目跟蹤,創(chuàng)新互聯(lián)公司專業(yè)和態(tài)度為您提供的服務

寫一個 Python 程序來計算字符串中的字符的出現(xiàn)次數,并給出一個實例。這個 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

對于循環(huán)第一次迭代:對于范圍(11)中的 I,如果(字符串[i] == char) 如果(t = = t)–條件為真。 計數= 0 + 1 = > 1

第二次迭代:如果(u = = l)–條件為假,范圍(11) 中的 1。

第三次迭代:對于范圍(11)中的 2,如果(字符串[2] == char) = >如果(t = = t)–條件為真。 計數= 1 + 1 = > 2

對剩余的程序迭代進行同樣的操作

計算字符出現(xiàn)次數的 Python 程序示例 2

這個 Python 計算字符串程序中一個字符的總出現(xiàn)次數與上面相同。然而,我們只是將 For 循環(huán)替換為 While 循環(huán)。

# 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 字符的出現(xiàn)

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

計算字符總出現(xiàn)次數的 Python 程序示例 3

給定字符程序的 Python 總出現(xiàn)次數與第一個示例相同。但是,這一次,我們使用了函數的概念來分離邏輯。

# 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 字符的出現(xiàn)

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程序:計算字符串中的字符出現(xiàn)次數
文章位置:http://www.5511xx.com/article/dhsjipc.html