how to generate only 4 natural numbers in python using random module code example
Example 1: random between two floats python
>>> random.uniform(1.5, 1.9)
1.8733202628557872
Example 2: how to import random in python
import random
>>> random.uniform(1.5, 1.9)
1.8733202628557872
import random