This is my codeIn this library:
text_data(val)translatesvalto computer data typescolorcode()returns the selected color in hex
Can you please tell me how I can make it better?
from tkinter.colorchooser import askcolor
def text_data(text):
texti = []
binary = []
ordv = []
hexadecimal = []
octal = []
i = 0
while i < len(text):
j = ord(text[i])
k = bin(ord(text[i]))
l = hex(ord(text[i]))
m = oct(ord(text[i]))
k = k[2:]
l = l[2:]
m = m[2:]
print(text[i], " ", j, " ", k, "", l, "", m)
binary.append(k)
ordv.append(j)
hexadecimal.append(l)
texti.append(text[i])
octal.append(m)
i += 1
print("\n")
print(binary)
print("\n")
print(ordv)
print("\n")
print(hexadecimal)
print("\n")
print(octal)
def colorcode():
return askcolor()[1]
print(colorcode())
What it does is:
text_data(val)translatesvalto computer data typescolorcode()returns the selected color in hex
Can you please tell me how to make it better?