top of page
learn_data_science.jpg

Data Scientist Program

 

Free Online Data Science Training for Complete Beginners.
 


No prior coding knowledge required!

Dice Game Simulation with Python

Updated: Sep 17, 2021

This is a simple python code for rolling a six sided dice. The program simulates two players and declares the winner to the player who gets the highest number while rolling the dice.

For this program I have used random module to generate a random number. To evaluate the winner I have used if, elif, else statement.

Below is the full program code for the Dice Game.

#importing random module to generate random number
import random
#Get random number between 1 and 6 for each players
player1_score = random.randint(1,6)
player2_score = random.randint(1,6)
#display the result
print('Player 1 scored : ' + str(player1_score))
print('player 2 scored : ' + str(player2_score))
#winner declaration
if player1_score > player2_score :
    print('Player 1 won')
elif player1_score < player1_score :
    print('Player 2 won')
else:
print('It is a draw')

Here is the explanation of each part of the code.

First we import random module to generate the random number. The randint() method takes two integer values separated by a comma. The randint(1,6) will generate any random number between 1 and 6 including 1 and 6. Two different random numbers are assigned to the variable player1_score and player2_score.

#importing random module to generate random number
import random
#Get random number between 1 and 6 for each players
player1_score = random.randint(1,6)
player2_score = random.randint(1,6)

The next part of the code is used to display what random numbers each player has got.

#display the result
print('Player 1 scored : ' + str(player1_score))
print('player 2 scored : ' + str(player2_score))

The last part of the code is for the declaration of the winner which is done by using if, elif and else statement. The code checks which player has got the highest number and declares that player as the winner, if both the players has the same number it says it is a draw.

#winner declaration
if player1_score > player2_score :
    print('Player 1 won')
elif player1_score < player1_score :
    print('Player 2 won')
else:
    print('It is a draw')








Comentarios


COURSES, PROGRAMS & CERTIFICATIONS

 

Advanced Business Analytics Specialization

Applied Data Science with Python (University of Michigan)

Data Analyst Professional Certificate (IBM)

Data Science Professional Certificate (IBM)

Data Science Specialization (John Hopkins University)

Data Science with Python Certification Training 

Data Scientist Career Path

Data Scientist Nano Degree Program

Data Scientist Program

Deep Learning Specialization

Machine Learning Course (Andrew Ng @ Stanford)

Machine Learning, Data Science and Deep Learning

Machine Learning Specialization (University of Washington)

Master Python for Data Science

Mathematics for Machine Learning (Imperial College London)

Programming with Python

Python for Everybody Specialization (University of Michigan)

Python Machine Learning Certification Training

Reinforcement Learning Specialization (University of Alberta)

Join our mailing list

Data Insight participates in affiliate programs and may sometimes get a commission through purchases made through our links without any additional cost to our visitors.

bottom of page