• 2022-06-05
    下列有关Python计算排列组合阶乘等,错误的是___________。
    A: 可通过scipy.special模块中导入,如 from scipy.special import perm,comb
    B: 可通过标椎库math中导入,如 from math import perm,comb
    C: 阶乘可通过标椎库math中导入, from math import factorial
    D: 阶乘可通过numpy库中导入, from numpy import factorial