diff options
author | Sudipto Mallick <smlckz@bccr> | 2024-01-08 14:58:02 +0530 |
---|---|---|
committer | Sudipto Mallick <smlckz@bccr> | 2024-01-08 14:58:02 +0530 |
commit | 5c2eca7a33a2b152abe9dc020fbd312e0ef33d8e (patch) | |
tree | 10119c597fd3a4cf29a21eff2681ca7621b255c8 | |
parent | db46ee7baa4e8dca6cc3f0fd8b42e4cc94ef8dd3 (diff) | |
download | zadania-5c2eca7a33a2b152abe9dc020fbd312e0ef33d8e.tar.gz |
Fix typo in Python assignment #3.6
-rw-r--r-- | python/code/3/6.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/code/3/6.py b/python/code/3/6.py index f9b4b99..64b1a60 100644 --- a/python/code/3/6.py +++ b/python/code/3/6.py @@ -21,7 +21,7 @@ for i in range(len(marr)): c = ((c - 97) + key) % 26 + 97 marr[i] = c -print('Ceesar cipher with k =', key, 'applied to the given message:') +print('Caesar cipher with k =', key, 'applied to the given message:') print(str(marr, encoding='ascii')) |