Advertisement
Guest User

Letter

a guest
Dec 6th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. while True:
  2. m=input("Give me a message to convert: ")
  3. print(m[::-1])
  4. c=input("Do you want to convert another message? Please answer 'yes' or 'no': ")
  5. if c=="no":
  6. break
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement