Question: could modify this code to encrypt entire files of text plainText = input ( Enter a one - word, lowercase message ) distance

could modify this code to encrypt entire files of text
plainText = input("Enter a one-word, lowercase message ")
distance = int(input("Enter the distance value "))
code =""
for ch in plainText: ordvalue = ord(ch) cipherValue = ordvalue + distance
if cipherValue > ord('z'):
cipherValue = ord('a')+ distance -\(ord('z')- ordvalue +1) code += chr(cipher) print(code)

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 Programming Questions!