Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 754 Bytes

File metadata and controls

21 lines (16 loc) · 754 Bytes

Final Project – Simple Interactive Python Program

Overview

This project is a small interactive tool written in Python.
Its goal is to combine basic input handling with clean and testable function design.

The project contains three main functions:

  • greet(name) – generates a friendly greeting.
  • add(a, b) – adds two values that the user provides.
  • analyze_list(values) – analyzes a list and reports basic statistics.

All logic is placed inside project.py, and a simple interactive demo runs when the file is executed.

Files

  • project.py – main program and all functions
  • test_project.py – test suite using pytest
  • request.txt – dependencies list

How to Run

python project.py