“inverser 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

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 une chaîne python

string = 'abcd'
''.join(reversed(string))
Lonely Louse

inverser une chaîne python

# Recursive
def reverse(string):
    if len(string) == 0:
        return string
    else:
        return reverse(string[1:]) + string[0]

# Iterative
def reverse_iter(string):
    if len(string) == 0:
        return string
    else:
        new_string = ""
        for i in range(len(string)):
            new_string += string[len(string)-i-1]
        return new_string
Code Crystal

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

Questions similaires à “inverser une chaîne python”

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

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code