diff --git a/decrypt_message_one.py b/decrypt_message_one.py new file mode 100644 index 0000000..245c78d --- /dev/null +++ b/decrypt_message_one.py @@ -0,0 +1,43 @@ +cipher = { + 'a':'v', + 'b':'h', + 'c':'r', + 'd':'j', + 'e':'t', + 'f':'x', + 'g':'s', + 'h':'a', + 'i':'e', + 'j':'f', + 'k':'b', + 'l':'n', + 'm':'o', + 'n':'i', + 'o':'g', + 'p':'l', + 'q':'m', + 'r':'z', + 's':'q', + 't':'u', + 'u':'c', + 'v':'k', + 'w':'d', + 'x':'p', + 'y':'y', + 'z':'w', + ' ': '}', + '\n': '^', + ',': '5', + '!': '[', + ':':'-', + ')':'*', + '.': '%' +} + +encrypted_file = open("encrypted_message_one.txt", 'r') + +encrypted_message = encrypted_file.readline() + +encrypted_file.close() + +# Write code below