I want to create a basic random number generator like
n = int(rnd * 9) but I want it to eliminate the numbers once they are selected.
for instance once it selects 5, next time it runs it should only be able to select 1-4 and 6-9. This should continue until there are no numbers remaining.
Thanks,
pete
n = int(rnd * 9) but I want it to eliminate the numbers once they are selected.
for instance once it selects 5, next time it runs it should only be able to select 1-4 and 6-9. This should continue until there are no numbers remaining.
Thanks,
pete