Hi,
I am using this line of code to generate a random list of integers:
random.sample(range(2000), 100)
With this code i know i wont have double value's with my result. Is their maybe a faster way to achieve the same results?
Now i actually have to convert these int to string. Whats the fastest way to do this?
Thanks