python randomly choose 0 or 1 code example
Example 1: random 0 or 1 python
from random import choice
choice([True, False])
Example 2: randomly choose between two numbers python
import random
random.choice([-40, 40])
from random import choice
choice([True, False])
import random
random.choice([-40, 40])