HELP!!!!
All in Python: Modify the two cipher programs, will be graded onthe completeness of the program to include error checking, passingparameter values, and default values. Make these programs ascomplete as possible but don’t overthink the exercise.
File: decrypt.py code input (“Enter the coded text: “) distance int(input(“Enter the distance value: “)) plainText- ▼ for ch in Code: ordvalue ord (ch) cipherValue ordvalue – distance if cipherValue <ord( ‘a cipherValue ord(‘z’) – (distance (ord( a)-ordvalue 1)) plainText print(plainText) chr(cipherValue) += File:
OR
OR