I'm working on a Python 3 project. My code is more longer but I prepared for you a sample basic idea of my code which works.
arr = []
arr2 = []
number = (["01", "02", "03" ])
arr = number
print(arr) # Output : ["01", "02", "03"]
Question:
How to convert this numbers into another array with converting hex to bin?
Note:
My expected output is for arr2 : ["00000001", "00000010", "00000011"]
And when I print(arr2[0])
I want to see 00000001