Question: how to correct this code? def decrypt_a1z26(text: str) -> str: decipher_text = for items in text.split(-): for char in items.split( ): if char.isdigit(): pass ||
how to correct this code?



def decrypt_a1z26(text: str) -> str: decipher_text = for items in text.split("-"): for char in items.split(" "): if char.isdigit(): pass || || decipher_text += chr(int(char) + ord ('A') - 1) decipher_text += char else: return decipher_text
Step by Step Solution
There are 3 Steps involved in it
It looks like you are working on a Python function to decrypt a text encoded using the A1Z26 cipher ... View full answer
Get step-by-step solutions from verified subject matter experts
