I have a text file with ~1000 lines, and i wanted to take unique (not repeating) random 15 lines from the text file.
I tried this.
JavaScript
x
4
1
from random import choice
2
lines = [a.strip() for a in open("FailsCollection.txt").readlines()]
3
result = [choice(lines) for a in range(15)]
4
but this was not selecting unique lines, sometimes the same line was repeating in the 15 lines output.
from the answer here I tried this also
JavaScript
1
5
1
import random
2
from random import choice
3
lines = [a.strip() for a in open("FailsCollection.txt").readlines()]
4
result = [choice(lines) for a in random.sample(range(1, 1000), 15)]
5
But again the lines were not unique.
Can anyone please advice. Thanks in advance.
Advertisement
Answer
Simple one:
JavaScript
1
5
1
import random
2
3
with open("FailsCollection.txt") as f:
4
result = random.sample(list(f), 15)
5