Skip to content

Commit

Permalink
Update before GUI
Browse files Browse the repository at this point in the history
  • Loading branch information
sapekshpareek committed Nov 13, 2023
1 parent 2a68317 commit ea50426
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,10 @@ def encode():
end = ''.join(random.choices(string.ascii_uppercase + string.ascii_lowercase, k=3))
ele[i] = str(start)+a+str(end)

print('\nYour Secret String:\n')
print('\nYour Secret Message is:\n')
for i in range(size):
print(ele[i], end=" ")
print()
choose()


Expand Down Expand Up @@ -84,6 +85,7 @@ def decode():
ele[i] = start
for i in range(size):
print(ele[i], end=" ")
print()
choose()


Expand Down

0 comments on commit ea50426

Please sign in to comment.