I need a simple way to generate a list of hex numbers between certain start and finish value with fast performance using python.
For example:
If I enter 0 and FFF it would pad the output with zeroes to the largest number:
000
001
002
003
004
005
006
007
008
009
00A
00B
...
FFF
Any suggestions? I'm not a programmer so the best, simplest way to do this is may help me. Thanks