Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 527 Bytes

File metadata and controls

11 lines (8 loc) · 527 Bytes

fizzbuzz

fizzbuzz challenge in python

https://blog.codinghorror.com/why-cant-programmers-program/ https://imranontech.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/

Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”.

As a baby programmer, I thought it would be fun to try. I did it in less than 5 mins. :)