Entry 5054

sadsdd

   

Submitted by wdewdewd on June 29, 2010 at 5:49 p.m.
Language: Python. Code size: 279 bytes.

#!/usr/bin/python
import sys;
from random import *;
for i in range(0,40):
    for j in range(0,12):
        if(j==11):
             sys.stdout.write(str(((int)(random()*1000))%2)) 
         else:
            sys.stdout.write(str(((int)(random()*1000))%2)+",") 
        print "";

This snippet took 0.01 seconds to highlight.

Back to the Entry List or Home.

Delete this entry (admin only).