From c8cb33ac4b2f9cfdf7d28f93d1d87dccd33ddfba Mon Sep 17 00:00:00 2001 From: Daniela Mazza Date: Wed, 3 Oct 2018 18:16:31 +0200 Subject: [PATCH] Update Exercise 4.py encryption_key not default --- Case Study 1 - Caesar Cipher/Exercise 4.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Case Study 1 - Caesar Cipher/Exercise 4.py b/Case Study 1 - Caesar Cipher/Exercise 4.py index 91b3af4..76ad4f0 100644 --- a/Case Study 1 - Caesar Cipher/Exercise 4.py +++ b/Case Study 1 - Caesar Cipher/Exercise 4.py @@ -1,2 +1,5 @@ -decoded_message = caesar(encoded_message, encryption_key = -3) -print(decoded_message) \ No newline at end of file +encryption_key = 3 + +decoded_message = caesar(encoded_message, encryption_key) + +print(decoded_message)