I would like to write a function for range where you enter a value when you are calling the function.
def randomRange():
for num in range(0, ())
print num
I would like the user to call the function like this "randomizeRange()"
And then I would like them to enter an integer to represent the maximum value in the range. I'm trying to get a better understanding of how to use the range function.