Answers for "all possible multiplication of an array element python"

1

python multiplication array

import numpy as np

A = np.array([[1,2],[3,4]])
B = np.array([[5,6],[7,8]])
print(A@B)
Posted by: Guest on October-08-2021
2

multiply each element in list python

a_list = [1, 2, 3]

multiplied_list = [element * 2 for element in a_list]

# [2, 4, 6]
Posted by: Guest on December-16-2020

Code answers related to "all possible multiplication of an array element python"

Python Answers by Framework

Browse Popular Code Answers by Language