
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Generate Random Range in a List using Python
When it is required to find the random range in a list, a list comprehension and the ‘randrange’ method present in ‘random’ package is used.
Example
Below is a demonstration of the same −
import random my_result = [random.randrange(1, 100, 1) for i in range(10)] print ("The result is :") print(my_result)
Output
The result is : [40, 73, 58, 45, 68, 19, 86, 6, 15, 71]
Explanation
The required packages are imported into the environment.
A list comprehension is used to iterate over the list, and 'randrange' method is used to generate random number in the given range.
This result is assigned to a variable.
This is the output that is displayed on the console.
Advertisements