Results 9 comments of Jordan Watson

**Math** - [x] math.ceil(x) - [x] math.copysign(x, y) - [x] math.fabs(x) - [ ] math.factorial(x) - [x] math.floor(x) - [x] math.fmod(x, y) - [x] math.frexp(x) - [ ] math.fsum(iterable) -...

**Random** - [x] random.seed(a=None, version=2) - [ ] random.getstate() - [ ] random.setstate(state) - [x] random.getrandbits(k) - [x] random.randrange(stop) - [x] random.randrange(start, stop[, step]) - [x] random.randint(a, b) - [x]...

**itertools** - [x] itertools.accumulate(iterable[, func, *, initial=None]) - [x] itertools.chain(*iterables) - [x] classmethod chain.from_iterable(iterable) - [x] itertools.combinations(iterable, r) - [x] itertools.combinations_with_replacement(iterable, r) - [x] itertools.compress(data, selectors) - [x] itertools.count(start=0, step=1)...

**bisect** - [x] bisect.bisect_left(a, x, lo=0, hi=len(a)) - [x] bisect.bisect_right(a, x, lo=0, hi=len(a)) - [x] bisect.bisect(a, x, lo=0, hi=len(a)) - [x] bisect.insort_left(a, x, lo=0, hi=len(a)) - [x] bisect.insort_right(a, x, lo=0,...

**collections** class collections.Counter([iterable-or-mapping]) - [ ] Counter.elements() - [ ] Counter.most_common([n]) - [ ] Counter.subtract([iterable-or-mapping]) - [ ] Counter.fromkeys(iterable) - [ ] Counter.update([iterable-or-mapping]) class collections.deque([iterable[, maxlen]]) - [x] deque.append(x) -...

**heapq** - [x] heapq.heappush(heap, item) - [x] heapq.heappop(heap) - [x] heapq.heappushpop(heap, item) - [x] heapq.heapify(x) - [x] heapq.heapreplace(heap, item) - [x] heapq.merge(*iterables, key=None, reverse=False) - [x] heapq.nlargest(n, iterable, key=None) -...

***statistics*** - [x] statistics.mean(data) - [x] statistics.fmean(data) - [x] statistics.geometric_mean(data) - [x] statistics.harmonic_mean(data) - [x] statistics.median(data) - [x] statistics.median_low(data) - [x] statistics.median_high(data) - [x] statistics.median_grouped(data, interval=1) - [x] statistics.mode(data) -...

***os*** - [ ] exception os.error - [ ] os.name *Process Parameters* - [ ] os.ctermid() - [ ] os.environ - [ ] os.environb - [ ] os.chdir(path) - [...

***getopt*** - [ ] getopt.getopt(args, shortopts, longopts=[]) - [ ] getopt.gnu_getopt(args, shortopts, longopts=[]) - [ ] exception getopt.GetoptError - [ ] exception getopt.error