diff --git a/decrypt_message_two.py b/decrypt_message_two.py new file mode 100644 index 0000000..5e2ad72 --- /dev/null +++ b/decrypt_message_two.py @@ -0,0 +1,7 @@ +encrypted_file = open("encrypted_message_two.txt", 'r') + +encrypted_message = encrypted_file.readline() + +encrypted_file.close() + +# Write Code Here \ No newline at end of file