Author | Message | Time |
---|---|---|
Yegg | In Python when i do something like PacketId = 0x0E and then type 0x0E (in the Python Shell (Interpreter)) the integer, 14 comes up. Is this correct? Or like visual basic does Python need to do something like &HE. I know that Pascal does 0x0E, I was pretty sure Python did that too. Can someone just clarify this for me. | December 12, 2004, 11:23 PM |
hismajesty | Yes: 0x0E = 14 | December 12, 2004, 11:43 PM |
St0rm.iD | Yup. 0x0e is what you want. | December 13, 2004, 1:08 AM |