kkalog

Untitled

Jul 21st, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. def reverse_order_string(user_input):
  2.   return user_input[::-1]
  3.  
  4. user_input = raw_input("Give me your input:")
  5. print reverse_order_string(user_input)
Advertisement
Add Comment
Please, Sign In to add comment