Answers for "reverse words in python"

6

how to reverse word order in 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))
Posted by: Guest on June-11-2020
0

reverse the words in a string python

string = 'hello people of india'
words = string.split()   #converts string into list
print(words[::-1])
Posted by: Guest on May-18-2021

Code answers related to "reverse words in python"

Python Answers by Framework

Browse Popular Code Answers by Language