Contact: aviboots(AT)netvision.net.il
39,895 questions
51,826 answers
573 users
with open("d:\\data.txt", "w") as file: file.write("%s %s\n" % (int("0xFF", 16), int("0xAC", 16))) ''' run: 255 172 '''
with open("d:\\data.txt", "w") as file: file.write("%s %s\n" % ("0xFF", "0xAC")) ''' run: 0xFF 0xAC '''