P ython p rogramming e xercises



Yüklə 1,51 Mb.
Pdf görüntüsü
səhifə105/124
tarix14.05.2023
ölçüsü1,51 Mb.
#113537
1   ...   101   102   103   104   105   106   107   108   ...   124
PythonProgrammingExercisesGentlyExplained

Solution Design 
Instead of hard-coding every letter and its encrypted form, we can rely on each letter’s Unicode 
code point integer. Code points were discussed in Exercise #7, ―ASCII Table.‖ The ord() and 
chr()
functions discussed in Exercise #7, ―ASCII Table‖ can translate from a letter string to integer 
and integer to letter string, respectively. 
The function starts with an encryptedText variable set to an empty string that will store the 
encrypted result as we encrypt each character. A for loop can loop over the text parameter to 
encrypt each character. If this character isn’t a letter, it’s added to the end of encryptedText as-is 
without encryption. 
Otherwise, we can pass the letter to ord() to obtain its Unicode code point as an integer. 
Uppercase letters A to Z have integers ranging from 65 up to and including 90. Lowercase letters a to 
z have integers ranging from 97 up to and including 122. We need to reduce this by 26 to ―wrap 
around‖ to the start of the alphabet. 
For example, the letter 'S' has an integer 83 (because ord('S') returns 83) but adding 83 + 
13
gives us 96, which is greater than the integer for Z (ord('Z') returns 90). In this case, we must 
subtract 26: 96 - 26 gives us the encrypted integer 70, and chr(70) returns 'F'. This is how we 
can determine that 'S' encrypts to 'F' in the ROT 13 cipher. 
Note that while an uppercase 'Z' has the Unicode code point 90, the lowercase 'z' has the 
Unicode code point 122. 
Special Cases and Gotchas 
While you want to add 13 to the Unicode code point integers of both uppercase and lowercase 
letters, when you check if this addition results in a number larger than Z’s Unicode code point, you 
must use the correct case of Z. Otherwise, your rot13() function may determine that the lowercase 
'a'
(with integer 97) is past uppercase 'Z' (with integer 90) because 97 is greater than 90. You 
must compare lowercase rotated letters with 122 (the integer of lowercase 'z') and uppercase 
rotated letters with 90 (the integer of uppercase 'Z'). 
All non-letter characters such as numbers, spaces, and punctuation marks are added to the 
encrypted text unmodified. Be sure that your rot13() function doesn’t accidentally drop them from 
the returned string. 


Python Programming Exercises, Gently Explained 
129 
Now try to write a solution based on the information in the previous sections. If you still have 
trouble solving this exercise, read the Solution Template section for additional hints. 

Yüklə 1,51 Mb.

Dostları ilə paylaş:
1   ...   101   102   103   104   105   106   107   108   ...   124




Verilənlər bazası müəlliflik hüququ ilə müdafiə olunur ©azkurs.org 2025
rəhbərliyinə müraciət

gir | qeydiyyatdan keç
    Ana səhifə


yükləyin