“Como reverter uma string” Respostas de código

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

string reversa em python

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

Como reverter uma string

function reverseString(str) {
    return str.split("").reverse().join("");
}
reverseString("hello");
Unsightly Unicorn

python reverte uma corda

#linear

def reverse(s): 
  str = "" 
  for i in s: 
    str = i + str
  return str

#splicing
'hello world'[::-1]
Smiling Salmon

string reversa em java

String str = "Hello";
String reverse(String str){
  StringBuilder sb = new StringBuilder();
  sb.append(str);
  sb.reverse();
  return sb.toString();
}
Lonely Lark

como reverter uma string no python

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

Respostas semelhantes a “Como reverter uma string”

Perguntas semelhantes a “Como reverter uma string”

Mais respostas relacionadas para “Como reverter uma string” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código