Advertisements
Advertisements
Question
Out of random() and randint(), which function should we use to generate random numbers between 1 and 5? Justify.
Solution
The 'randint(a,b)' function will return a random integer within the given range as parameters.
'random()' function generates a random floating-point value in the range (0,1)
Therefore, to generate a random number between 1 and 5 we have to use the randint(1,5) function.
Note: 'randint()' is a part of 'random' module so, before using the same in the program, it has to be imported using the statement ‘from random import randint’.
APPEARS IN
RELATED QUESTIONS
How is math.ceil(89.7) different from math.floor (89.7)?
The ‘Play and learn’ strategy helps toddlers understand concepts in a fun way. Being a senior student you have taken responsibility to develop a program using user-defined functions to help children master two and three-letter words using English alphabets and the addition of single-digit numbers. Make sure that you perform a careful analysis of the type of questions that can be included as per the age and curriculum.
Create a menu-driven program using user-defined functions to implement a calculator that performs the following:
log10(x), sin(x), cos(x)
ABC School has allotted unique token IDs from (1 to 600) to all the parents for facilitating a lucky draw on the day of their Annual day function. The winner would receive a special prize. Write a program using Python that helps to automate the task. (Hint: use random module)