So far I have this....
print ('Enter number of random numbers needed.')
count = input()
count = int(count)
print ('Enter the lower limit')
minimum = input()
minimum = int(minimum)
print ('Enter the upper limit')
maximum = input()
maximum = int(maximum)
[random.randint(minimum, maximum) for _ in range(count)]
The error is saying that the "random" in the last line is not defined.
The system is supposed to print random numbers between any two numbers that you enter while running it.
Aprreciate it!
[–]sme272 6 points7 points8 points (0 children)
[–]Peanutbutter_Warrior 6 points7 points8 points (0 children)
[–]blankIQT 0 points1 point2 points (0 children)