我有两个清单:
A = [1,2,3] B = [4,5,6]
我如何获得新列表 C,该应该包含两个列表中每个值的乘积。
C
我的最终输出应该是
C = [4,5,6,8,10,12,12,15,18]
python math combinations list python-3.x
combinations ×1
list ×1
math ×1
python ×1
python-3.x ×1