You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from random import *
|
|
T = 20000
|
|
arr = ['0'] * 112 + ['1'] * 16
|
|
print(T)
|
|
for _ in range(T):
|
|
shuffle(arr)
|
|
print("".join(arr))
|
|
# print("".join(str(randint(0,1)) for _ in range(128))) |