摘要: import numpy as np def asum(a_list,b_list,n1=2,n2=3): a = np.array(a_list) b = np.array(b_list) c = pow(a,n1) + pow(b,n2) return c a_lst = [1,2,3,4] b 阅读全文
posted @ 2019-09-13 23:42 枫木清风 阅读(59) 评论(0) 推荐(0)