w3resource

Python: Randomly generate a list with 10 even numbers between 1 and 100 inclusive

Python Basic - 1: Exercise-81 with Solution

Write a Python program to randomly generate a list of 10 even numbers between 1 and 100 inclusive.

Note: Use random.sample() to generate a list of random values.

Sample Solution:

Python Code:

import random
print(random.sample([i for i in range(1,100) if i%2==0], 10))

Sample Output:

[4, 22, 8, 20, 24, 12, 30, 98, 28, 48]

Pictorial Presentation:

Python: Randomly generate a list with 10 even numbers between 1 and 100 inclusive.

Flowchart:

Flowchart: Python - Randomly generate a list with 10 even numbers between 1 and 100 inclusive.

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to find the first missing positive integer that does not exist in a given list.
Next: Write a Python program to calculate the median from a list of numbers.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.