""" CSCI 107, Assignment 6: Dice Rolling Game Simulation """ # --------------------------------------- # Your name | # CSCI 107: Assignment 6 | # Last Modified: ??, 2022 | # --------------------------------------- # Brief overview goes here. | # --------------------------------------- import random # The missing Python functions go here. #--------------------------------------- def main(): """ Gather inputs from user, conduct simulation """ number_of_trials = int(input("Enter number of trials: ")) winning_sum = int(input("Enter winning sum for dice rolls: ")) number_of_dice = int(input("Enter number of dice to roll: ")) sides_on_die = int(input("Enter number of sides on each die: ")) all_trials(number_of_trials, winning_sum, number_of_dice, sides_on_die) #--------------------------------------- main()