Forum Python

Please or S’enregistrer to create posts and topics.

trouver l'indice de la dernière occurrence d'un caractère

Comment trouver l'indice de la dernière occurrence d'un caractère dans une chaîne en Python ?

Salut zaher56,

La méthode des chaines de caractères  rfind() python répond à votre question:

Exemple

# Chaîne de caractères
chaine = "Python Programmin"

# Caractère à rechercher
caractere = 'o'

# Trouver l'indice de la dernière occurrence du caractère
indice = chaine.rfind(caractere)

print(indice)
# output : 4