Title Nov 30, 2022 ā¢ 1 min read import random # importing the "random" library def Dice(n): # Where ānā is the number of die rolled sum = 0 while n >= 0: sum += random.randint(1, 6) n -= 1 return sum Dice(13)