I have list as below
list = [' [00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 10]']
I want tto strip off the "[" and "]" from the list and then divide the list into 4 elements. i.e.
output_list = [0x00000000 , 0x00000000 , 0x00000000 , 0x00000010]
Any help is appreciated.
Cheers