I'm new to Python Programming and I made a simple Python program about converting text to binary numbers, now i'm adding a simple code for converting them back from binary to text (correct the code below if there is wrong).
message = (input("Enter Text/Binary to Translate: ")
binList = {
'01100001': 'a',
'01100010': 'b',
# to Z
}
BinT = "".join([binList[message] for message in letter])
print(BinT)