Write a print statement that displays a random floating-point number within the range of 10.0 through 14.99. Assume that the random library is imported. code example
Example 1: random between two floats python
>>> random.uniform(1.5, 1.9)
1.8733202628557872
Example 2: random float python
import random
print(random.random(1, 10)) # any int or float