Wed 4 Jun 2008
import random import time i = round(random.randint(10,20) j = 0 love = random.randint(0,1) while(j < i): j = j + 1 if(love == 1): print "loves me\n" love = 0 else: print "loves me not\n" love = 1 time.sleep(1)
Wed 4 Jun 2008
import random import time i = round(random.randint(10,20) j = 0 love = random.randint(0,1) while(j < i): j = j + 1 if(love == 1): print "loves me\n" love = 0 else: print "loves me not\n" love = 1 time.sleep(1)
June 5th, 2008 at Thursday 06:45:58
ARGH! damn thing wont preserve spaces!!
June 5th, 2008 at Thursday 08:06:08
Nice. Try using
my python code
tags to preserve whitespace.
June 5th, 2008 at Thursday 08:08:09
Nice. Try using
<pre> my python code </pre>
tags to preserve whitespace.
Grr.
June 5th, 2008 at Thursday 08:08:34
Nice. Try using
<pre<my python code
tags to preserve whitespace.
June 5th, 2008 at Thursday 08:09:45
Grrr… Won’t let me use html in the comments. anyway google “html pre”
June 5th, 2008 at Thursday 09:32:59
sweet thanks Tom! I think the you need to do the > pre < thing,, er, the anpersan lt thing. =-)
June 5th, 2008 at Thursday 17:10:52
Why is while indented? *brainsplodez*