Advertisement
Astro_Ratter

Untitled

Nov 25th, 2021
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. def main():
  2. text = input("Enter text: ")
  3. encrypt_answer = input("(E)ncrypt or (D)ecrypt?" )
  4. if encrypt_answer == "E":
  5. print("encrypt function goes here")
  6.  
  7.  
  8.  
  9. if encrypt_answer == "D":
  10. print("decrypt function goes here")
  11.  
  12. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement