Advertisement
simeonshopov

Caesar Cipher

Feb 11th, 2020
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.09 KB | None | 0 0
  1. text = input()
  2.  
  3. new_text = [chr(ord(x) + 3) for x in text]
  4.  
  5. print(''.join(new_text))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement