“Python Inverse Words and Swap Case” 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

Python Inverse Words and Swap Case

ffsdgdfh
Tender Tiger

Réponses similaires à “Python Inverse Words and Swap Case”

Questions similaires à “Python Inverse Words and Swap Case”

Plus de réponses similaires à “Python Inverse Words and Swap Case” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code