python random array 0 and 10 code example

Example 1: random 0 or 1 python

from random import choice
choice([True, False])

Example 2: generate random integer matrix python

import numpy as np

randi_arr = np.random.randint(start, end, dimensions)
#random integers will be sampled from [start, end) (end not inclusive)
#end is optional; if end is not specified, random integers will be sampled from [0, start) (start not inclusive)
#dimensions can be specified as shown here; (m,n) #2D array with size 'm x n'

Example 3: random python between 0 and 1

import random
random.random() # Gives you a number between 0 and 1