summary refs log tree commit diff stats
path: root/python/output/10_caeser_cipher.typ
diff options
context:
space:
mode:
authorSudipto Mallick <smlckz@termux-alpine>2024-01-13 09:28:10 +0530
committerSudipto Mallick <smlckz@termux-alpine>2024-01-13 09:28:10 +0530
commit8fb719f58f91d1f1f187a1db974682fb3736ee05 (patch)
tree506e070c7900cc5e3fb31000dbd1a39e95809c61 /python/output/10_caeser_cipher.typ
parent53d75846cc95a3af5d90c01b5ef010818b4adcf7 (diff)
downloadzadania-8fb719f58f91d1f1f187a1db974682fb3736ee05.tar.gz
Changes to project structure of Python assignments
As was directed to remove assignments.
Diffstat (limited to 'python/output/10_caeser_cipher.typ')
-rw-r--r--python/output/10_caeser_cipher.typ12
1 files changed, 12 insertions, 0 deletions
diff --git a/python/output/10_caeser_cipher.typ b/python/output/10_caeser_cipher.typ
new file mode 100644
index 0000000..ba5b336
--- /dev/null
+++ b/python/output/10_caeser_cipher.typ
@@ -0,0 +1,12 @@
+```
+Enter message: A quick brown fox jumps over a lazy dog.
+Enter key (1-25, -1 - -25): 5
+Ceesar cipher with k = 5 applied to the given message:
+F vznhp gwtbs ktc ozrux tajw f qfed itl.
+```
+```
+Enter message: F vznhp gwtbs ktc ozrux tajw f qfed itl.
+Enter key (1-25, -1 - -25): -5
+Ceesar cipher with k = 21 applied to the given message:
+A quick brown fox jumps over a lazy dog.
+```