Create a new function using random() that returns 0 and 1 with 75% and 25% probability respectively. python code example
Example: random 0 or 1 python
from random import choice
choice([True, False])
from random import choice
choice([True, False])