The fizzbuzz program in python
The fizzbuzz program is to validate your python knowledge of conditions and loops. It states that to loop over the numbers between 1 to 100, if the current number is perfectly divisible by 3 then print ‘fizz’. Else if the number is perfectly divisible by 5 then print ‘buzz’. Finally, if the number is perfectlyRead More »