Welcome to a very simple script that I whipped up during class because manually figuring out mean, median, mode & range was driving me insane. It is a very simple project mostly relying on the statistics library for the calculations. And uses Colorama to make everything look pretty.
Due to this being very basic to setup just do the following
- Make sure to have the latest verion of python installed
- Install Colorama
- Download via download raw file button on here or right click on this text and hit save link as
- Run the python file like you normally would
- Have a cup of tea
Now I got no clue if this works at all on Linux & Mac, but it should. With one small script change.
on line 11 you will find this small bit of code. All it does is clear the console to make it look nicer
os.system("cls")
But apparently cls dosen't work on Mac & Linux, so to make it work you can either delete that line or swap cls with clear like so.
os.system("clear")
I dunno, but enjoy. or judge tf out if it I don't care.