Possible Duplicate:
How do you split a list into evenly sized chunks in Python?
Split string by count of characters
I have a string (which is hex), something like:
717765717777716571a7202020
I need to get it into the format:
0x71,0x77,0x65,0x71,0x77,0x77...
I'm not sure what the best method would be though