Python program to reverse words in a string sentence
# take inputs
string = 'Know Program'
# splitting the string into list of words
words = string.split(' ')
# reversing the split string list and join using space
reverseString = " ".join(reversed(words))
# print reverse of each word in a string
print('The reverse is', reverseString)