This project implements the classic FizzBuzz problem in Python.
- Numbers from 1 to 50 are printed.
- Multiples of 3 print "Fizz".
- Multiples of 5 print "Buzz".
- Multiples of both 3 and 5 print "FizzBuzz".
- Clone the repository:
git clone https://github.com/Fatima-eng-coder/FizzBuzz.git
- Run
fizzbuzz.pyusing Python:python fizzbuzz.py
Fatima Azaz