“inverser la chaîne en 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

Comment imprimer une entrée en arrière dans Python

str="Python" # initial string
stringlength=len(str) # calculate length of the list
slicedString=str[stringlength::-1] # slicing 
print (slicedString) # print the reversed string
Wandering Wolf

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

inverser la chaîne en python

string = "sachin"
print(string[::-1])
Sachin

inverser la chaîne en python

g = "My name is IRONMAN" #reverse the string
print(str(g[::-1]))
tymepas

Réponses similaires à “inverser la chaîne en python”

Questions similaires à “inverser la chaîne en python”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code