We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4825b55 commit 9f87c50Copy full SHA for 9f87c50
1 file changed
redo.py
@@ -1 +1,17 @@
1
-print('hi')
+import time
2
+from option_validator import options
3
+import os
4
+
5
+def redo():
6
+ os.system('cls')
7
+ print('*******************************')
8
+ print('What would you like to do next?')
9
+ time.sleep(1)
10
+ print('\n1. Encrypt another')
11
+ print('2. Decrypt another')
12
+ print('3. Exit\n')
13
14
+ options()
15
+ print('\nPress any key to continue')
16
+ input()
17
+ redo()
0 commit comments