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)