Skip to content

Commit 9f87c50

Browse files
committed
added extra functionality
1 parent 4825b55 commit 9f87c50

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

redo.py

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,17 @@
1-
print('hi')
1+
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+
time.sleep(1)
14+
options()
15+
print('\nPress any key to continue')
16+
input()
17+
redo()

0 commit comments

Comments
 (0)