Question: def encrypt_letter(uppercase_letter: str, keystream_value: int) -> str: The first parameter represents a single uppercase letter and the second represents a keystream value. Apply the keystream

def encrypt_letter(uppercase_letter: str, keystream_value: int) -> str: """The first parameter represents a single uppercase letter and the second represents a keystream value. Apply the keystream value to the letter to encrypt the letter, and return the result. Return a new string contains a new single upper case letter that encrypt by shifting x (x = keystream value) places to the right. >>> encrypt_letter('V', 3) 'Y' >>> encrypt_letter('A', 1) pass
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
