This Python program simulates rolling multiple dice. The user specifies the number of dice to roll, and the program randomly generates and displays the result for each die using ASCII art. The program also calculates and displays the total sum of all dice rolled.
- Custom Number of Dice: Prompts the user to enter the number of dice they want to roll.
- Random Roll Generation: Each die rolls a random value between 1 and 6.
- ASCII Art Display: Displays each die's result using ASCII art for a visual effect.
- Total Calculation: Displays the sum of all dice values rolled.
- Clone or download this repository to your local machine.
- Run the program in a Python environment.
- Follow the prompt:
- Enter the number of dice you want to roll.
- The program will roll each die, display its value as ASCII art, and then calculate and show the total sum.
How many dice?: 3
┌─────────┐┌─────────┐┌─────────┐
│ ● ● ││ ● ● ││ ● ● │
│ ● ● ││ ● ││ ● │
│ ● ● ││ ● ● ││ ● ● │
└─────────┘└─────────┘└─────────┘
Total: 14