“Como reverter uma string no python” Respostas de código

reverte uma corda em 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

como reverter uma string no 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

como reverter uma string no python

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

como reverter uma string no 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

como reverter uma string no python

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

Como reverter uma string no python

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

Respostas semelhantes a “Como reverter uma string no python”

Perguntas semelhantes a “Como reverter uma string no python”

Mais respostas relacionadas para “Como reverter uma string no python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código