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.
project.py– main program and all functionstest_project.py– test suite using pytestrequest.txt– dependencies list
python project.py