Random-Binary

Sat 17 May 2025

title: "Random Binary" author: "Rj" date: 2019-04-20 description: "-" type: technical_note draft: false


import random
MAX = 10

for x in range(MAX):
    val = random.randint(0, 1)
    print(val)
0
1
1
0
1
0
1
1
0
0


Score: 0

Category: basics