()
| 59 | |
| 60 | # Below are our dice functions. |
| 61 | def dice6(): |
| 62 | # Getting a random number between 1 and 6 and printing it. |
| 63 | dice_6 = random.randint(1, 6) |
| 64 | print("\r\nYou rolled a " + str(dice_6) + "!\r\n") |
| 65 | |
| 66 | user_exit_checker() |
| 67 | |
| 68 | |
| 69 | def dice8(): |
no test coverage detected