I'm trying to use replace(), to replace a set of string with each letter of the alphabet, but i can't seem to work out a way to replace more than one letter.
This is what i have so far
txt = input("What do you want to be deciphered?: ")
a = txt.replace("'[", "a")
b = txt.replace(">.", "b")
c = txt.replace("\A", "c")
d = txt.replace("8F", "d")
e = txt.replace("RT", "e")
f = txt.replace("7+", "f")
g = txt.replace("@ ", "g")
h = txt.replace("555-", "h")
i = txt.replace("69", "i")
j = txt.replace("QQPP", "j")
k = txt.replace("201", "k")
l = txt.replace("58X", "l")
m = txt.replace("O920O", "m")
n = txt.replace("238", "n")
o = txt.replace("Q|D;", "o")
p = txt.replace(";AA,", "p")
q = txt.replace("'[[`244", "q")
r = txt.replace("LR4KL", "r")
s = txt.replace("240C.Z", "s")
t = txt.replace("232356", "t")
u = txt.replace("''DS]", "u")
v = txt.replace("]X.", "v")
w = txt.replace("24'M'M", "w")
x = txt.replace("1", "x")
y = txt.replace("2.5.7.6.6.222.", "y")
z = txt.replace("214.5", "z")
print(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)