In [5]:
a = input() #The input for letters
z = ""
for letters in a: #To create a loop
for every in letters: #to assist the loop
b = ord(every) #Ord to translate it
c = bin(b) #To create the actual binary
c = c[2:]
c = "0" + c #There last 2 make it work as actual Binary
if len(c) < 8:
c = "0" + c
z += c
print (z) #Print
010010000110010101101100011011000110111100100000011000110110100001100001011101000010110000100000011011010111100100100000011011100110000101101101011001010010000001101001011100110010000001001101011000010111001001101011011010010111000001101100011010010110010101110010
In [ ]: