Support Forums

Full Version: Enter The Matrix
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Code:
import random
while True:
    x = ['1','0']
    y = random.choice(x)
    a = ['1','0']
    b = random.choice(a)
    print b,y,b,y,b,y,b,y,b,y,b,y,b,y,
(10-14-2009, 07:56 PM)PaNiK Wrote: [ -> ]Does it come with pretty green colors? Big Grin

For you it does Oui
Code:
while True:
    print "\033[32m11011101110111011101110111011101110111011101110111011101110111011101110111011101\033[0m"
    print "\033[32m00100010001000100010001000100010001000100010001000100010001000100010001000100010\033[0m"
(10-14-2009, 08:33 PM)PaNiK Wrote: [ -> ]Thanks very much sir Big Grin

Does it say anything particular in Binary over and over?
No problem.
but no is doesnt say anything Sad, that would be cool though, make it like "im going to eat you", then send it to someone Big Grin
Chances are they wouldn't be able to read it Big Grin
This is good, good work!
Amazing work, Nevets.
Thanks nevets. Looks great.
Code:
import random
while True: print "\033[32m"+"".join([str(random.randint(0, 1)) for x in range(80)])


This is why List Comprehensions are win ^_^
(10-15-2009, 02:18 PM)Fallen Wrote: [ -> ]
Code:
import random
while True: print "\033[32m"+"".join([str(random.randint(0, 1)) for x in range(80)])


This is why List Comprehensions are win ^_^

thats cool, ill have to read your tutorial