“inverser les mots dans une chaîne python” Réponses codées

comment inverser une chaîne en python

# in order to make a string reversed in python 
# you have to use the slicing as following

string = "racecar"
print(string[::-1])
Tejas Naik

chaîne inversée en python

'hello world'[::-1]
'dlrow olleh'
Kind Kangaroo

inverser les mots dans une chaîne python

string = 'hello people of india'
words = string.split()   #converts string into list
print(words[::-1])
Uptight Unicorn

Python Inverse Mots dans String

def reverse(st):
    s = st.split()
    return ' '.join(s[::-1])
Ian

Réponses similaires à “inverser les mots dans une chaîne python”

Questions similaires à “inverser les mots dans une chaîne python”

Plus de réponses similaires à “inverser les mots dans une chaîne python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code