Skip to content

Latest commit

 

History

History
 
 

Dice-Roll-Simulator

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

In this script we will create a classic rolling dice simulator with the help of basic Python knowledge. Here we will be using the random module since we randomize the dice simulator for random outputs.

random.randint(): This function generates a random number in the given range.

Below is the implementation.

Implementation