aboutsummaryrefslogtreecommitdiffstats
path: root/help.py
blob: bed52d951d4c16c4ca910cffe6939bd9df436567 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#  Time to make a real FizzBuzz
for N in range (1,101):
    S = ''
    if N % 3 == 0:
        S = S + "Fizz"
    if N % 5 == 0:
        S = S + "Buzz"
# I have no idea how this works
    if N % 3 and N % 5:
        print(N)
    else:
        print(S)