Dice simulator:
– Create a six and eight-sided dice simulator (8 points).
– Please make sure that it is a FAIR die.
– Cover it with a simple, easy to use GUI (8 points).
– please provide a good, clean comments (carry 4 points)
Submission Requirement:
1. need the ipynb file
2. can run in Jupyter Notebook
thank you! please feel free to ask any further detailde requirements about this.I have already done the code for rolling dice without the Gui part it’s what you’ll need to do bellow is the code
import random
def rolldice(min,max):
while True:
print(“roll the dice…”)
print(f”Your number after roll is:{random.randint(min,max)}”)
input(“do you want to roll dice again? enter y for yes and n for no”)
if choice.lower()==’n’:
break
rolldice(1,6)
DO WHATEVER IS MISSING AND WHATEVER YOU WANT BUT I NEED SOMETHING RUNNING AND A GOOD GUI FOR HAVING A GOOD GRADE

For This or a Similar Paper Click Here To Order Now