# 如何完成两个列表的+-/÷ 假设有3个列表怎么办? str = ''' 100,99,98 1314,233,69 94,92 '''
可以使用map函数,a=[1,2,3]b=[4,5,6]c=list(map(lambda x,y:x+y,a,b))三个调用2次呗