Question: Write a Python function named caesar that satisfies the following specifications: It takes the plaintext as a mandatory argument. Assume the value of this argument

Write a Python function named caesar that satisfies the following specifications:

  • It takes the plaintext as a mandatory argument. Assume the value of this argument will be a string.

  • It takes the shift as an optional argument. If unspecified, use 13 as a default.

  • It converts the plaintext to upper case using the upper() method of strings.

  • It returns the requested ciphertext.

  • It contains a docstring with the following sections:

    Adescriptionofthepurposeofthefunction AnArgssection AReturnssection

    At the end of your script, add the following code:

    if __name__ == "__main__": msg = ("GKYP EDU MYBB YDLEBLU Q MXYBU" 
     " BEEF, QCEDW EJXUH JXYDWI") print(caesar(msg, 10)) 

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!