Как мне отменить ys?
#python #list #python #Список Вопрос: def convolute_0(xs,ys): sum([x*y for x,y in zip(xs,ys[::-1])]) assert convolute_0([1], [10] ) == 1*10 assert convolute_0([1,2], [10,20] ) == 1*20 2*10 assert convolute_0([1,2,3], [10,20,30] ) ==…