Im new to python. I want to take an input from the console and encrypt it.I want to change the letters of the input string like this and then output.
a=e,
b=g,
c=p,
d=f,
e=i,
f=k,
g=q,
h=u,
i=h,
j=v,
k=z,
l=w,
m=j,
n=r,
o=d,
p=s,
q=t,
r=n,
s=c,
t=l,
u=y,
v=x,
w=b,
x=m,
y=o,
z=a
So If I input "Dog", it should output "Dog = Fdq" and If I input "python", it should output "python = soludr". How can I do this?