Skip to content
Advertisement

My Python Caeser Cipher program stops shifting after 30

I created a function to split inputed string into list of words and then replace the letters in each word with its shifted counterpart but when I set the shift to over 30 it prints unchanged.

JavaScript

Advertisement

Answer

One useful trick here is to use the modulus operator (%). It will take care of the shift for you.

Here is how I would do :

JavaScript

Let’s say c is “y” and num is 10. You would then have alphabet.index(c) equal to 24, so the shift would return 34. Since 34 modulo 26 is 8, it would append alphabet[8] (“i”) to new_string.

I used len(alphabet) instead of hard-coding 26 so that you can change your alphabet and the code would still work.

Advertisement