Learn practical skills, build real-world projects, and advance your career
import numpy as np
import pandas as pd
np.random.rand(2)
array([0.78790637, 0.53467687])
arr = np.random.rand(5,5)
np.random.randint(10,100,[5,5])
array([[54, 91, 20, 58, 76],
       [73, 22, 17, 51, 36],
       [45, 34, 78, 81, 65],
       [78, 73, 71, 69, 60],
       [89, 82, 94, 17, 53]])
arr = np.random.rand(5,5)