“Comment inverser une chaîne” 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

chaîne inversée en python

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

Comment inverser une chaîne

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

Python inverse une chaîne

#linear

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

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

Inverse de cordes en java

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

comment inverser une chaîne en python

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

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

Questions similaires à “Comment inverser une chaîne”

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

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code