Question: Write a python program to decrypt a simple transposition cipher. You will be given an encrypted string and need to build a new string using
Write a python program to decrypt a simple transposition cipher. You will be given an encrypted string and need to build a new string using every nth character (0 n
"S edtiahzyee"
The desired output:
| n | Decrypted message |
1 | S edtiahzyee |
2 | S dihye etaze |
3 | Seize the day |
4 | Sdheeae iy tz |
5 | Sty aedz ieeh |
DO NOT use any built-in methods. Use loops and if statements.
I almost got it right, here are screenshots from my code and my results.


Thank you
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
