Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

np.rand.randint

np.random.randint(0,10, size=(5, 5)) # random integers from 0 to 10 in size 5,5
#o/p 
array([[3, 9, 2, 3, 5],
       [2, 8, 7, 7, 1],
       [8, 2, 1, 1, 9],
       [9, 0, 5, 6, 4],
       [1, 6, 6, 4, 6]])
Comment

numpy randint

>>> np.random.randint(2, size=10)
array([1, 0, 0, 0, 1, 1, 0, 0, 1, 0]) # random
>>> np.random.randint(1, size=10)
array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0])
Comment

np.random.randint

# random.randint(low, high=None, size=None, dtype=int)
# [low,high) if high is given, else [0, low)
Comment

PREVIOUS NEXT
Code Example
Python :: python get value from dictionary 
Python :: django queryset group by 
Python :: pytube 
Python :: what does json.loads do 
Python :: soup findall table 
Python :: embed image in html from python 
Python :: kruskal python implementation 
Python :: charat in python 
Python :: python dict setdefault 
Python :: python check if list contains 
Python :: add column to start of dataframe pandas 
Python :: matplotlib python background color 
Python :: how to execute a python file from another python file 
Python :: Command errored out with exit status 1: 
Python :: replace nan with 0 pandas 
Python :: play video in colab 
Python :: different states of a button tkinter 
Python :: custom position for axis matplotlib 
Python :: bs4 class 
Python :: how to convert adjacency list to adjacency matrix 
Python :: python projects with source code 
Python :: edit pandas row value 
Python :: python convert hex number to decimal 
Python :: create python list 
Python :: pip install django celery results 
Python :: heroku django procfile 
Python :: python create a grid of points 
Python :: remove columns from dataframe 
Python :: how do you change a string to only uppercase in python 
Python :: linear search python 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =