Answers for "number of possible combinations python"

1

combination python

# 1. Print all combinations 
from itertools import combinations

comb = combinations([1, 1, 3], 2)
print(list(combinations([1, 2, 3], 2)))
# Output: [(1, 2), (1, 3), (2, 3)]

# 2. Counting combinations
from math import comb
print(comb(10,3))
#Output: 120
Posted by: Guest on September-30-2021
0

python possible combinations

import math
n=7
k=5
print(math.comb(n, k))
Posted by: Guest on October-01-2021

Code answers related to "number of possible combinations python"

Python Answers by Framework

Browse Popular Code Answers by Language