原创 Python中兩個列表相乘

學習筆記 Python中兩個列表相乘 #map()函數映射求兩個列表相乘 func = lambda x,y:x*y result = map(func,[1,2,3,4],[4,3,2,1]) list_result = list