summary refs log tree commit diff stats
path: root/python/code/3/6.py
diff options
context:
space:
mode:
authorSudipto Mallick <smlckz@bccr>2024-01-08 14:58:02 +0530
committerSudipto Mallick <smlckz@bccr>2024-01-08 14:58:02 +0530
commit5c2eca7a33a2b152abe9dc020fbd312e0ef33d8e (patch)
tree10119c597fd3a4cf29a21eff2681ca7621b255c8 /python/code/3/6.py
parentdb46ee7baa4e8dca6cc3f0fd8b42e4cc94ef8dd3 (diff)
downloadzadania-5c2eca7a33a2b152abe9dc020fbd312e0ef33d8e.tar.gz
Fix typo in Python assignment #3.6
Diffstat (limited to 'python/code/3/6.py')
-rw-r--r--python/code/3/6.py2
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'))