62357c1e332a2e9bcbef8fc96ca34b46c1bb3b29
[langlearn/.git] / fizzbuzz / drako.py
1 for i in range(1,101):
2     no = 1
3     if i % 3 == 0:    
4         print("Fizz", end = '')
5         no = 0
6     if i % 5 == 0:
7         print("Buzz", end = '')
8         no = 0
9     print (i if no else "")