大数乘法计算器——在阶乘中的应用

def mul_list(la: list, lb: list) -> list: c = 0 product = [0] * (len(la) + len(lb)) for a in range(len(la)): for b in range(len(lb)): temp = product[a
posted @ 2020-08-04 15:08  玉北  阅读(207)  评论(0编辑  收藏  举报