2012-11-24, 03:37 AM
Yayyyy Python!
Do people seriously apply for programming jobs when they can't program?!
I was worried about my programming ability when I get a job, but I can definitely write programs that are this simple with no effort o_o
As for the strings question... I'm guessing it involves a special character?
Code:
for i in range(1, 101):
if (i % 3 == 0) and (i % 5 == 0):
print("FizzBuzz")
elif (i % 3 == 0):
print("Fizz")
elif (i % 5 == 0):
print("Buzz")
else:
print(i)Do people seriously apply for programming jobs when they can't program?!
I was worried about my programming ability when I get a job, but I can definitely write programs that are this simple with no effort o_o
As for the strings question... I'm guessing it involves a special character?

