摘要: 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) 推荐(0) 编辑