Question: Input is Hello world 4 My output text to encrypt: Hellow world distace: 4 Lipps$asvph the problem is that its supposed to be Lipps${svph and

Input is

Hello world

4

My output

text to encrypt: Hellow world

distace: 4

Lipps$asvph

the problem is that its supposed to be Lipps${svph and im not sure how what i did wrong and what im supposed to do.

plainText = input("text to encrypt: ")

distance = int(input("distance: "))

code = ""

for ch in plainText:

ordValue = ord(ch)

cipherValue = ordValue + distance

if cipherValue > ord('z'):

cipherValue = ord('a') + distance - (ord('z') - ordValue + 1)

code = code + chr(cipherValue)

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!