“Comment inverser une chaîne en python” Réponses codées

inverser une chaîne à Golang

func reverse(s string) string {
	runes := []rune(s)
	for i, j := 0, len(runes)-1; i < j; i, j = i+1, j-1 {
		runes[i], runes[j] = runes[j], runes[i]
	}
	return string(runes)
}
Frantic Finch

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

string = "string"
rev = "".join([l for l in reversed(string)])
RobynoDude

comment inverser une chaîne en python

user_input = input("Input the sentence you want reversed: ")
print (user_input[::-1])
#This is the easiest way to do it lol
A Dude

comment inverser une chaîne en python

belief = "the world is mine, hello"[::-1]
print(belief)
Important Ibis

Comment inverser une chaîne en python

print("hello world"[::-1])
'dlrow olleh'
Oluwayanmi Stephen

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

Questions similaires à “Comment inverser une chaîne en python”

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

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code