Scientific Computing
Encryption often involves the Caesar cipher - named after Julius Caesar, who used the system to encrypt military messages. Many early internet users also adopted this cipher. Called rot13
, the cipher encrypts a message by rotating the plaintext character by 13 positions in the alphabet. For example, “a” becomes “n” and likewise “n” becomes “a”. The nice thing about rot13
is that the same function can be used to encrypt and decrypt a message!
caesar.py
. Write a function called rot13
that takes a message as a parameter and rotates all alphabet characters by 13 places and preserves whitespace characters.
def rot13(msg):
# your code here
result = ""
return result
"lbh ner n fhcre pbby pbqr oernxvat clguba cebtenzzre"
. Print the decrypted message.Create an encrypted message of your own with the Caesar cipher. Decrypt your encrypted message.
isPalindrome(myString)
to return True
or False
based on whether myString is a palindrome. A palindrome is a string such as "racecar"
which is the same forwards as it is backwards. For example:
print(isPalindrome("racecar")) # prints True
print(isPalindrome("madam")) # prints True
print(isPalindrome("yourname")) # prints False
isPalindrome
function also handles spaces. You may need to update your implementation to do so. For example
print(isPalindrome("a man a plan a canal panama")) # prints True
print(isPalindrome("never odd or even")) # prints True
print(isPalindrome("your name")) # prints False
Submit your working caesar.py
to Moodle.