Random-Integer
Sat 17 May 2025
title: "Random Integer between 2 and 10" author: "Rj" date: 2019-04-22 description: "-" type: technical_note draft: false
import numpy as np
a = np.random.randint(2, 10, size=4)
print(a)
[8 4 5 3]
Score: 0
Category: data-wrangling