Contact: aviboots(AT)netvision.net.il
41,857 questions
54,547 answers
573 users
ba = bytearray() ba.append(0) ba.append(97) ba.append(122) for i in ba: print(i) ''' run: 0 97 122 '''