“Python n wählen R R” Code-Antworten

Python n wählen R R

# PYTHON 3.8
import math
math.comb(n, r)
just-saved-you-a-stackoverflow-visit

Python wählen die Funktion

>>> from math import comb
>>> comb(20,10)
Impossible Ibis

Python wählen die Funktion

deck = range(1, 53) #get deck of cards from 1 to 52
comb = list(itertools.combinations(deck, 2)) # make list  with unic 2 cards combination
len(comb) #output 1326
MrStonkus

Python n wählen R R

# PYTHON <3.8
import operator as op
from functools import reduce

def ncr(n, r):
    r = min(r, n-r)
    numer = reduce(op.mul, range(n, n-r, -1), 1)
    denom = reduce(op.mul, range(1, r+1), 1)
    return numer // denom  # or / in Python 2
just-saved-you-a-stackoverflow-visit

Ähnliche Antworten wie “Python n wählen R R”

Fragen ähnlich wie “Python n wählen R R”

Weitere verwandte Antworten zu “Python n wählen R R” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen