“Python Words invers en cadena” Código de respuesta

Cómo revertir el orden de las palabras en 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

Cómo revertir una cadena 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 revertir una cadena

#linear

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

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

revertir una pitón de cuerda

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

Cadena inversa de Python

reversed_string = input_string[::-1]
Xanthous Xenomorph

Python Words invers en cadena

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

Respuestas similares a “Python Words invers en cadena”

Preguntas similares a “Python Words invers en cadena”

Más respuestas relacionadas con “Python Words invers en cadena” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código