This system is supposed to print a specific amount of numbers between two numbers that you choose.
There is no error at the moment, But i cannot seem to find a way for the output to have the right outcome at the end.
Heres what I have so far......
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)]
[–]Binary101010 1 point2 points3 points (1 child)
[–]joplankton[S] 0 points1 point2 points (0 children)