Python Program to Generate a Random NumberIn Python programming, you can generate a random integer, doubles, longs etc . in various ranges by importing a "random" class. In Python, we can generate a random integer, doubles, long, etc in various ranges by importing a "random" module. In the following example, we will learn how to generate random numbers using the random module. Syntax: First, we have to import the random module and then apply the syntax: Generating a Random NumberThe random module provides a random() method which generates a float number between 0 and 1. Let's see the following example. Example - Output: 0.7632870997556201 If we run the code again, we will get the different output as follows. 0.8053503984689108 Generating a Number within a Given RangePython random module provides the randint() method that generates an integer number within a specific range. We can pass the two numbers as arguments that defines the range. Let's understand the following example. Example - 1: Output: 40 Example - 2: Output: 143 Using for loopThe randint() method can be used with for loop to generated a list of random numbers. To do so, we need to create an empty list, and then append the random numbers generated to the empty list one by one. Let's understand the following example. Example - Output: [10, 49, 16, 31, 45, 21, 19, 32, 30, 16] Using random.sample()The random module also provides the sample() method, which directly generates a list of random numbers. Below is the example of generating random numbers using the sample() method. Example - Output: [18, 25, 26, 29, 14, 31] In the above code, we have used the range() function, which generates the numbers between the given range.
Next TopicPython Convert Kilometers to Miles
|
JavaTpoint offers too many high quality services. Mail us on [email protected], to get more information about given services.
JavaTpoint offers college campus training on Core Java, Advance Java, .Net, Android, Hadoop, PHP, Web Technology and Python. Please mail your requirement at [email protected]
Duration: 1 week to 2 week