key = input()
a = list(str(key))
print(a)
Does anyone know how to change that a
list to get hex numbers in there? Example:
key = "abc"
>> ["a", "b", "c"]
But instead of those letters hex numbers.
Thanks.
key = input()
a = list(str(key))
print(a)
Does anyone know how to change that a
list to get hex numbers in there? Example:
key = "abc"
>> ["a", "b", "c"]
But instead of those letters hex numbers.
Thanks.