Quickpaste.it
Create Paste
Top Pastes
Recent Pastes
Settings
Account
Reverse a string
Created By
Anonymous
Expires never
Raw
Download
0
class stringc: def reversew(self, s): return ' '.join(reversed(s.split())) s=input("Enter the String:") print(stringc().reversew(s))