“Python Inverse Mots dans String” Réponses codées

Comment inverser l'ordre des mots dans Python

## initializing the string
string = "I am a python programmer"
## splitting the string on space
words = string.split()
## reversing the words using reversed() function
words = list(reversed(words))
## joining the words and printing
print(" ".join(words))
Distinct Dragonfly

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

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

inverser une chaîne python

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

chaîne inversée python

reversed_string = input_string[::-1]
Xanthous Xenomorph

Python Inverse Mots dans String

def reverse(st):
    s = st.split()
    return ' '.join(s[::-1])
Ian

Réponses similaires à “Python Inverse Mots dans String”

Questions similaires à “Python Inverse Mots dans String”

Plus de réponses similaires à “Python Inverse Mots dans String” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code