From 055d72b4ed7ea2db582bcf3b4c8bd4b0c5125dd2 Mon Sep 17 00:00:00 2001 From: Bill Buchanan Date: Tue, 2 Feb 2021 19:42:49 +0000 Subject: [PATCH] Update README.md --- unit02_symmetric/lab/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unit02_symmetric/lab/README.md b/unit02_symmetric/lab/README.md index 4526e5e..3b53039 100644 --- a/unit02_symmetric/lab/README.md +++ b/unit02_symmetric/lab/README.md @@ -286,8 +286,8 @@ Message Key CMS Cipher Now modify the code so that the user can enter the values from the keyboard, such as with: ```python -cipher=raw_input('Enter cipher:') -password=raw_input('Enter password:') +cipher=input('Enter cipher:') +password=input('Enter password:') ``` ## E Python Coding (Decrypting)