Kod:
#-*- coding:cp1254-*-
import random
import locale
locale.setlocale(locale.LC_ALL,"turkish_Turkey.1254")
asd=[0,1]
a=random.choice(asd)
dng=True
sayac=0
while dng==True:
if sayac==10000:
dng=False
a=random.choice(asd)
if a==0:
b=a+1
print a,b,a,b
if a==1:
b=a-1
print a,b,a,b
sayac+=1
