I am trying to create a matrix of random numbers, but my solution is too long and looks ugly
random_matrix = [[random.random() for e in range(2)] for e in ra
use np.random.randint() as np.random.random_integers() is deprecated
np.random.randint()
np.random.random_integers()
random_matrix = np.random.randint(min_val,max_val,(,))