This is the best solution I could find to this problem. It would be really great if you guys post your solutions too!
def fizzbuzz():
arr = ("", "", "Fizz", "", "Buzz", "Fizz", "", "", "Fizz", "Buzz", "", "Fizz", "", "", "FizzBuzz")
arr_index = 0
for i in range(1, 101):
if arr[arr_index] == "":
print (i)
else:
print(arr[arr_index])
arr_index += 1
if arr_index == 15:
arr_index = 0