-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththecode.py
More file actions
49 lines (26 loc) · 1.37 KB
/
thecode.py
File metadata and controls
49 lines (26 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
alphabet = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z','a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
from asci import logo
print(logo)
def caesar(start_text, shift_amount, cipher_direction):
end_text = ""
if cipher_direction == "decode":
shift_amount = shift_amount * -1
for char in start_text:
if char in alphabet:
position = alphabet.index(char)
new_position = position + shift_amount
end_text = end_text + alphabet[new_position]
else:
end_text = end_text + char
print(f"The {cipher_direction}text is {end_text}\n")
should_continue = True
while should_continue:
direction = input("Type 'encode' to encrypt, type 'decode'to decrypt:\n")
text = input("Type your message:\n").lower()
shift = int(input("Enter the shift number:\n"))
shift = shift % 26
caesar(start_text=text, shift_amount=shift, cipher_direction=direction)
result = input("Type 'yes' if you want to do agina. Otherwise type 'no'.\n")
if result == "no":
should_continue = False
print("GoodBye")