Answers for "select random 0 and 1 in python"

10

python randomise between 0 or 1

import random
random.random() # Gives you a number BETWEEN 0 and 1 as a float
round(random.random()) # Gives you a number EITHER 0 and 1
Posted by: Guest on September-02-2020

Code answers related to "select random 0 and 1 in python"

Python Answers by Framework

Browse Popular Code Answers by Language