“Comment compter la sous-chaîne dans une chaîne en python” Réponses codées

Comment compter la sous-chaîne dans une chaîne en python

count = string.count(substring)
Brave Buffalo

compter le substrat dans la chaîne python

def count_substring(string,sub_string):
    l=len(sub_string)
    count=0
    for i in range(len(string)-len(sub_string)+1):
        if(string[i:i+len(sub_string)] == sub_string ):      
            count+=1
    return count  
Repulsive Ratel

Réponses similaires à “Comment compter la sous-chaîne dans une chaîne en python”

Questions similaires à “Comment compter la sous-chaîne dans une chaîne en python”

Plus de réponses similaires à “Comment compter la sous-chaîne dans une chaîne en python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code