diff options
-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')) |