Complete the information in this project.

Authors (names and 151 accounts):
Jeff Kinne, cs15100

Project title:
Randomness

Project one sentence description:
Flip coins, roll dice, and keep track of what happens.

Project more detailed description:
This program allows the user to see coin flipping, rolling of dice, and some statistics of how often different outcomes happen.  The program also demonstrates how to use the curses package to make a program that has the entire terminal to use as output.

Things that don't work yet:
1) Rolling dice.  I just have coin flips working.
2) Coin flips in a row - I plan to have it also keep track of the maximum number of heads and tails in a row.
3) Batchs of coins - I plan to have it flip 10 or 20 coins at a time and keep track of how many come up heads, do this for many times, and see which number of heads happens the most (flipping 10 coins, probably 5 heads will be the most common outcome).

Sources - provide links to anything you have used, and a short description of what you used it for:
Getting started with curses in Python3 - https://docs.python.org/3/howto/curses.html