Calculate the sum of large numbers on Python

后端 未结 0 1234
攒了一身酷
攒了一身酷 2021-02-05 13:47

I use this code:

 import scipy.misc
import math
from decimal import Decimal

def n_choose_k(N, k, N2, k2, s):
    if k > N:
        return 0
    a1 = Decimal.f         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题