How to generate all possible 3 combinations of 5 numbers in Python

1 Answer

0 votes
import itertools as it

lst = list(it.combinations([1,7,3,8,5], 3))

for i in range(len(lst)):
    print(lst[i])

   
   
     
'''
run:
     
(1, 7, 3)
(1, 7, 8)
(1, 7, 5)
(1, 3, 8)
(1, 3, 5)
(1, 8, 5)
(7, 3, 8)
(7, 3, 5)
(7, 8, 5)
(3, 8, 5)

'''

 



answered Oct 1, 2021 by avibootz
...