Skip to content
Advertisement

My letter substitution cipher shows an error whenever there is a space in the input/phrase,to be encoded, how can i fix this?

So, this letter substitution cipher shows an error whenever there is a space (whitespace) in the input/phrase,to be encoded.

Here is my code: Im quite new to python so it would be helpful for any suggestions whatsoever.

JavaScript

Note this isn’t a Caesar Cipher, simply randomly changing the letters to other letters. Thank you

Advertisement

Answer

ascii_lowercase does not contain a space, so ascii_lowercase.index(char) is a ValueError.

One reasonable approach is to just catch this error and return the same character. That would require breaking your join call out into a loop. You could shoehorn an if char in ascii_lowercase into there to keep it in one line, but that would be pretty ugly.

EDIT: like this

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement