I'm trying to make a Text to Binary converter script. Here's what I've got..
userInput = input()
a = ('00000001')
b = ('00000010')
#...Here I have every remaining letter translated in binary.
z = ('00011010')
So let's say the user types the word "Tree", I want to convert every letter in binary and display it. I hope you can understand what I'm trying to do here. PS. I'm a bit newbie! :)