-
Notifications
You must be signed in to change notification settings - Fork 9
/
caesar_cipher.py
73 lines (56 loc) · 3.48 KB
/
caesar_cipher.py
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Caesar Cipher program which will encode and decode text
# e.g.
#cipher_text = "mjqqt"
#shift = 5
#plain_text = "hello"
# print output: "The decoded text is hello"
logo = """
██████ █████ ███████ ███████ █████ ██████
██ ██ ██ ██ ██ ██ ██ ██ ██
██ ███████ █████ ███████ ███████ ██████
██ ██ ██ ██ ██ ██ ██ ██ ██
██████ ██ ██ ███████ ███████ ██ ██ ██ ██
██████ ██ ██████ ██ ██ ███████ ██████
██ ██ ██ ██ ██ ██ ██ ██ ██
██ ██ ██████ ███████ █████ ██████
██ ██ ██ ██ ██ ██ ██ ██
██████ ██ ██ ██ ██ ███████ ██ ██
"""
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']
def caesar(start_text, shift_amount, cipher_direction):
"""
caesar function will encode and decode the text based on shift amount nubmer.
Inside the 'decrypt' option, shift each letter of the 'text' *backwards* in the alphabet by the shift amount and print the decrypted text.
"""
end_text = ""
if cipher_direction == "decode":
shift_amount *= -1
for char in start_text:
# if input value not in alplabets
if char in alphabet:
position = alphabet.index(char)
new_position = position + shift_amount
end_text += alphabet[new_position]
else:
end_text += char
print(f"Here's the {cipher_direction}d result: {end_text}")
print(logo)
# should continue
should_continue = True
while should_continue:
# input options
direction = input(
"Type 'encode' to encrypt, type 'decode' to decrypt:\n => ")
text = input("Type your message:\n => ").lower()
shift = int(input("Type the shift number:\n => "))
shift = shift % 25
# calling the caesar function
caesar(start_text=text, shift_amount=shift, cipher_direction=direction)
result = input(
"Type 'yes' if you want to go again. Otherwise type 'no'. \n => ")
if result == "no":
should_continue = False
print("Goodbye")