मराठी

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 - Computer Science (Python)

Advertisements
Advertisements

प्रश्न

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)

थोडक्यात उत्तर

उत्तर

It is suggested in the question to use the 'random' module. Therefore, the ‘randint()’ function can be used which will return a random integer within the given range as parameters.

Program:
from random import randint

#Defining the function to generate the random number between 1 and 600
def generateRandom():
    print("The winner of the lucky draw is the parent with token id: ",randint(1, 600))
    print("")
    

#calling the function
generateRandom()

OUTPUT:
The winner of the lucky draw is the parent with token id:  313
shaalaa.com
Types of Module - Built-in Modules
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 7: Functions - Exercise [पृष्ठ १७२]

APPEARS IN

एनसीईआरटी Computer Science [English] Class 11
पाठ 7 Functions
Exercise | Q 4. | पृष्ठ १७२
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×