UrbanPro
true

Learn Python Training from the Best Tutors

  • Affordable fees
  • 1-1 or Group class
  • Flexible Timings
  • Verified Tutors

Search in

Simulation of a die-roll:Usage of random module

Ashish K Sharma
10/06/2022 0 0

Task:Simulation of a simple die-rolling game,where we keep rolling a six-sided die until we have rolled a total of 20.

To simulate a six-sided die roll, we need a way to generate a random integer between 1 and 6. The random module in Python’s standard library provides us with various functions to generate random numbers. The function that we’ll use to write this program is  the randint() function, which generates a random integer in a given range.

The randint() function takes two integers as arguments and returns a random integer that falls between these two numbers (both inclusive). Calling the randint() function allows us to simulate the roll of our
virtual die. Every time we call this function, we’re going to get a number between 1 and 6, just as we would if we were rolling a six-sided die. So,now we write our program:

import os,sys
import random
#Roll a die until the total score is 20

target_score = 20
def roll():
    return random.randint(1,6)


score = 0
num_rolls = 0
while (score < target_score):
        die_roll = roll()
        num_rolls = num_rolls+1
        print('Rolled: {0}'.format(die_roll))
        score = score + die_roll

print('Score of {0} reached in {1} rolls'.format(score,num_rolls))

 

                                             Example Output

                                              Rolled: 4
                                              Rolled: 2
                                              Rolled: 6
                                              Rolled: 4
                                              Rolled: 6
                                              Score of 22 reached in 5 rolls

                                             

 

Note:The format() method lets you plug in labels and set it up so that they get
printed out in a nice, readable string with extra formatting around it.

0 Dislike
Follow 1

Please Enter a comment

Submit

Other Lessons for You

Python in Unix
Python in Unix How to run command on unix Commands cannot be run directly on a unix server like we do in shell script. SYNTAX: system("Command") check_output("Command", shell=True) call("Command",...
R

Rishi B.

0 0
0

Black in Python
When you are upturn in your career from beginner to experienced in programming world, your team will start looking at ‘how you are writing?’ Here the responsibility piling up. Okay,...

What is Python Egg?
(Attention: This is a technical post for Python developers. If you are not python programmer you might want to skip this). An .egg format files in Python is the standard distribution package contains...

Bit-wise operators
Operation Syntax Function Bitwise And a & b and_(a, b) Bitwise Exclusive Or a ^ b xor(a, b) Bitwise Inversion ~ a invert(a) Bitwise Or a b or_(a, b) Left...

Build an interactive Dictionary using Python 3.x
I have downloaded a 5MB data base consisting of words and their meanings in a json file . I want to write a python progrsm which will ask the user to enter a word and then the program will search through...
B

Biswanath Banerjee

0 0
0
X

Looking for Python Training Classes?

The best tutors for Python Training Classes are on UrbanPro

  • Select the best Tutor
  • Book & Attend a Free Demo
  • Pay and start Learning

Learn Python Training with the Best Tutors

The best Tutors for Python Training Classes are on UrbanPro

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more