I just *want* to be a programmer

stumbled across the FizzBuzz quest thanks to fellow dad Jeff Atwood.

I spent about 8 minutes on this mainly because I always forget / vs %, and iteration through if blocks. Here is my fizzbuzz in Python.

for i in range(0,100):  
    j = i % 3  
    k = i % 5  
    if j == 0 …

Continue reading »