/MeanMedianModeRange

Just a simple Mean, Median, Mode & Range calculator I made in class :D

Primary LanguagePython

Mean, Median, Mode & Range Calculator

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.

Setting up

Due to this being very basic to setup just do the following

Making it work on Linux & Mac

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")

But why?

I dunno, but enjoy. or judge tf out if it I don't care.