: The basic code above shifts spaces too ( ord(' ') is 32 , which becomes 35 , or '#' ). If the autograder requires spaces to stay unchanged, add an if statement to check if char == " ": before encoding.
A: It's highly recommended for readability and for the autograder to parse the output correctly. 8.3 8 create your own encoding codehs answers
Shift even-positioned characters by +3 and odd-positioned by -2. Vowel Replacement: Replace all vowels with numbers ( , etc.) and shift consonants. : The basic code above shifts spaces too