Contact: aviboots(AT)netvision.net.il
41,381 questions
53,927 answers
573 users
f = 3.14159 lst = [int(d) for d in str(f) if d.isdigit()] print(lst) ''' run: [3, 1, 4, 1, 5, 9] '''