-
Notifications
You must be signed in to change notification settings - Fork 0
/
caesar.py
73 lines (44 loc) · 1.03 KB
/
caesar.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
def menu():
print("-"*20)
print("Menu: ")
print("1. Encode")
print("2. Decode")
print("-"*20)
choice = int(input("Enter your choice: "))
while choice not in (1, 2):
choice = int(input("Invalid, pls re-enter your choice: "))
return choice
def cipher(char, n):
new_ascii = ord(char) + n
if (new_ascii not in range(97, 122+1)) and (new_ascii not in range(65, 90+1)):
if n > 0:
new_ascii = new_ascii - 26
else:
new_ascii = new_ascii + 26
return chr(new_ascii)
def encode():
string = input("Msg to be encoded: ")
n = int(input("Caesar value: "))
encoded_str = ""
for char in string:
if char.isalpha():
encoded_str += cipher(char, n)
else:
encoded_str += char
print(encoded_str)
def decode():
string = input("Msg to be decoded: ")
n = int(input("Caesar value: "))*(-1)
decoded = ""
for char in string:
if char.isalpha():
decoded += cipher(char, n)
else:
decoded += char
print(decoded)
if __name__ == "__main__":
choice = menu()
if choice == 1:
encode()
else:
decode()