Not randint because it seems that it relies on the previous result to predict the next one I want to be able to generate totally random numbers but still within a certain range
Because here is the problem:
If I put randint(10,14)
it will display more than 11 more than the rest, just because it fell on 11 at the beginning (or in my program it did)
If I extend the range to randint(10,30)
there will be more than 15,16,17 but much less of the rest or nothing in the 20 or 30 range.
I don't know if you see what I'm talking about, but in my program I get a lot more of some values and others not at all, while they are well and truly in the range.