Python: Generate a random float within a specific range
Python module: Exercise-7 with Solution
Write a Python program to generate a float between 0 and 1, inclusive and generate a random float within a specific range.
Use random.uniform
Sample Solution:
Python Code:
import random
print("Generate a float between 0 and 1, inclusive:")
print(random.uniform(0, 1))
print("\nGenerate a random float within a range:")
random_float = random.uniform(1.0, 3.0)
print(random_float)
Sample Output:
Generate a float between 0 and 1, inclusive: 0.9332552133311842 Generate a random float within a range: 1.3166101982165992
Flowchart:
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to shuffle the elements of a given list.
Next: Write a Python program to create a list of random integers and randomly select multiple items from the said list.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/python-exercises/modules/python-module-random-exercise-7.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics