2
What I want to do is take a string and for each character of the string walk type 3 positions back in the alphabet and replace in the string or create a new string Ex string = 'abcd' walking 3 positions so String would be 'xyza' My idea of code is as follows:
a = 'ab cd mnopq stvux'
b = ['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z']
c = ''
for i in a:
for j in b:
if(a[i] == b[i]):
c =