-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreverse-cipher.py
60 lines (51 loc) · 2.15 KB
/
reverse-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
'''
Title: Reverse Cipher
Description: Cipher that displays a message in reverse order.
Developer: Alexander Beck
Email: beckhv2@gmail.com
Github: https://github.com/bexcoding
.....//\\......//\\......//\\......//\\......//\\......//\\......//\\....../
....// \\....// \\....// \\....// \\....// \\....// \\....// \\....//
\..// /\ \\..// /\ \\..// /\ \\..// /\ \\..// /\ \\..// /\ \\..// /\ \\..//
\\// / \ \\// / \ \\// / \ \\// / \ \\// / \ \\// / \ \\// / \ \\// /
|| | <> | || | <> | > | || | <> | || |
|| | <> | || | <> | || || // > | || | <> | || |
/\ \ / /\ \ / || || // / /\ \ / /\ \
/ \ \/ / \ \/ ||____ ___ ___ || // / / \ \/ / \
<> | || | <> | || || \\ // \\ // \\ |||| | | <> | || | <> |
<> | || | <> | || || || ||____|| || || \\ | | <> | || | <> |
\ / || \ / || || || || || || \\ | \ / || \ /
\/ //\\ \/ //\\ ||____// \\___// \\___// || \\ \\ \/ //\\ \/ /
//..\\ //..\\ \\ //..\\ //
\ //....\\ //....\\ //....\\ //....\\ //....\\ //....\\ //....\\ //.
\\//......\\//......\\//......\\//......\\//......\\//......\\//......\\//..
'''
import string
def reverse_cipher(message):
"""
str -> str
returns a message that is the reverse of the input message
message: a str that the user wants reversed
assumes that the input is of the correct type
"""
new_message = ""
i = len(message) - 1
while i >= 0:
new_message += message[i]
i -= 1
return new_message
def reverse_without_punctuation(message):
"""
str -> str
returns a message that is the reverse of the input message with no
punctuation and with all letters lowercase
message: a str that the user wants reversed
assumes that the input is of the correct type
"""
new_message = ""
i = len(message) - 1
while i >= 0:
if message[i] in string.ascii_letters:
new_message += (message[i]).lower()
i -= 1
return new_message