FR
Size: a a a
FR
FR
БГ
from random import randint
def strange():
n = randint(0, 9)
return n<1
def corrected():
s = strange()
n = (randint(0, 5) < 2)
if n:
s = not s
return s
set1 = [strange() for _ in range(100)]
set2 = [corrected() for _ in range(100)]
print(set1.count(False))
print(set2.count(False))FR
from random import randint
def strange():
n = randint(0, 9)
return n<1
def corrected():
s = strange()
n = (randint(0, 5) < 2)
if n:
s = not s
return s
set1 = [strange() for _ in range(100)]
set2 = [corrected() for _ in range(100)]
print(set1.count(False))
print(set2.count(False))БГ
FR
БГ
БГ
БГ
БГ
БГ
БГ
FR
БГ
БГ
FR
БГ
FR
БГ