I have two hex values (provided as strings):
00000000fe000000 <- high order 32-bits
000000000001009f <- low order 32-bits
They need to be combined into a single value, and ideally - conveniently addressed like value[0:15] (returning bits 0 to 15, right to left).
What is the best way to do this in Python?