FizzBuzz

Description

This project includes a Python implementation of the classic FizzBuzz challenge but with customized outputs.

A shell script is used to collect user input and run the Python program with the specified number. The Python program then prints numbers from 1 to the given number n, applying the following rules:

Files in the Project

Prerequisites

How to Run the Program

  1. Open a terminal and navigate to the project directory.
  2. Make the shell script executable by running: chmod +x run.sh
  3. Run the shell script with ./run.sh
  4. Enter a number when prompted.

Back to Lucy's Page