“Python Reverse Words and Swap Case” Respostas de código

Como reverter a ordem das palavras em 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

Python Reverse Words and Swap Case

ffsdgdfh
Tender Tiger

Respostas semelhantes a “Python Reverse Words and Swap Case”

Perguntas semelhantes a “Python Reverse Words and Swap Case”

Mais respostas relacionadas para “Python Reverse Words and Swap Case” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código