How many dice do you want to roll? [1-6] 4
~~~~~~~~~~~~~~~~~~~ RESULTS ~~~~~~~~~~~~~~~~~~~
┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐
│ ● ● │ │ ● ● │ │ │ │ ● ● │
│ │ │ ● ● │ │ ● │ │ ● │
│ ● ● │ │ ● ● │ │ │ │ ● ● │
└─────────┘ └─────────┘ └─────────┘ └─────────┘
$ python main.py
How many dice do you want to roll? [1-6] 3
~~~~~~~~~~~~~ RESULTS ~~~~~~~~~~~~~
┌─────────┐ ┌─────────┐ ┌─────────┐
│ ● │ │ ● ● │ │ ● ● │
│ │ │ │ │ │
│ ● │ │ ● ● │ │ ● ● │
└─────────┘ └─────────┘ └─────────┘
$ python main.py
How many dice do you want to roll? [1-6] 1
~ RESULTS ~
┌─────────┐
│ ● ● │
│ │
│ ● ● │
└─────────┘
$ python main.py
How many dice do you want to roll? [1-6] 5
~~~~~~~~~~~~~~~~~~~~~~~~~ RESULTS ~~~~~~~~~~~~~~~~~~~~~~~~~
┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐
│ ● ● │ │ ● │ │ │ │ ● ● │ │ ● ● │
│ ● │ │ │ │ ● │ │ ● │ │ ● │
│ ● ● │ │ ● │ │ │ │ ● ● │ │ ● ● │
└─────────┘ └─────────┘ └─────────┘ └─────────┘ └─────────┘
This project was created by following the tutorial on Real Python.