Question: 3. Implement the following function in the Python module functions py and test it from a Python module named to3. py: def generate_integer_list(m, low, high):

3. Implement the following function in the Python module functions py and test it from a Python module named to3. py: def generate_integer_list(m, low, high): Generates a list of random integers. Requires import: from random import randint Use: values = generate_integer_list(m, low, high) Parameters: n - muster of values to generate (int, > 0) low - low value range (int) high - high value range (int, > low) Returns: values - a list of rondon integers (list of int) Sample execution: 1 generate_integer_list (10, -109, 109) (70. 60, 85, 90, -23, 27, -49, 73, 58, 38]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
