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 : functional programming characteristics
Functions are first class (objects). That is, everything you can do with "data" can be done with functions themselves (such as passing a function to another function). Recursion is used as a primary...

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


Top Programming Languages 2017: Every Beginner Should Learn
Every year a plethora of job opportunities are being created for skilled programmers. So if you are thinking of honing your coding skills it is really a bright idea. But with so many programming languages...

Python programming - Applications
If you’re thinking of learning Python? Or if you recently started learning it? You may be asking yourself: "What exactly can I use Python for?" There are so many applications for python, but there...
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