Just a value rounder for python made for myself. Made for fun.
Only supports positive numbers, for now.
Rounds decimal digits >= 5 to the next possible value. Digits < 5 are ignored.
E.g
0.9 -> 1 | 0.5 -> 1 | 0.4 -> 0 | 0.1 -> 0 | 0.444445 -> 1
THIS DOES NOT WORK LIKE math.ceil
(0.1 -> 1) OR built-in round
(0.444445 -> 0)