Contact: aviboots(AT)netvision.net.il
41,683 questions
54,351 answers
573 users
import string print (string.hexdigits); ''' run: 0123456789abcdefABCDEF '''
import string for ch in string.hexdigits: print(ch) ''' run: 0 1 2 3 4 5 6 7 8 9 a b c d e f A B C D E F '''