Contact: aviboots(AT)netvision.net.il
40,849 questions
53,254 answers
573 users
import numpy as np lst = np.random.choice(np.arange(1, 101), size=10, replace=False) print(lst) ''' run: [40 11 66 98 57 91 96 62 78 74] '''