Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Create an A1Z26 decrypter: def decrypt_a1z26(text: str) str: def main() None: main() A1Z26 method is a substitution cipher. It means that it replaces the letter

image text in transcribed

Create an A1Z26 decrypter: def decrypt_a1z26(text: str) str: def main() None: main() A1Z26 method is a substitution cipher. It means that it replaces the letter with its number in the alphabet. For example: - Letter A is the first letter in the alphabet, so it will be replaced with 1. - Letter D is the 4th letter in the alphabet, so it will be replaced with 4. - Thus, message AD will be replaced with 1-4 (a dash is added between each two numbers). - The program should correctly decrypt both upper-case and lower-case letters and keep all other characters (whitespace, punctuation, etc.) intact. Must be able to decrypt without converting the string to upper/lower case. - You can assume that the original message will not contain any numbers - The A1Z26 cipher is case-insensitive, so you will lose the information about the case of the letters. It's fine - Hint: Remember that some arguments of range ( ) can be negative (and it can take up to three arguments)! Example: Input 2085 17-21-9-3-11 2-18-15-23-14 6-15-24. this is a string Output THE QUICK BROWN FOX. MUST BE ABLE TO RUN WHILE RETAINING THE SPACES IN BETWEEN

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Transactions On Large Scale Data And Knowledge Centered Systems Xxiv Special Issue On Database And Expert Systems Applications Lncs 9510

Authors: Abdelkader Hameurlain ,Josef Kung ,Roland Wagner ,Hendrik Decker ,Lenka Lhotska ,Sebastian Link

1st Edition

366249213X, 978-3662492130

More Books

Students also viewed these Databases questions

Question

4. Describe the role of narratives in constructing history.

Answered: 1 week ago

Question

1. Identify six different types of history.

Answered: 1 week ago