Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def main():
- text = input("Enter text: ")
- encrypt_answer = input("(E)ncrypt or (D)ecrypt?" )
- if encrypt_answer == "E":
- print("encrypt function goes here")
- if encrypt_answer == "D":
- print("decrypt function goes here")
- main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement