Is there a built-in method to do it? If not how can I do this without costing too much overhead?
feedback
|
|
Not built-in, but algorithm
The | |||||||||||||||
feedback
|
For very long file: seek to random place in file based on it's length and find two newline characters after position (or newline and end of file). Do again 100 characters before or from beginning of file if original seek position was <100 if we ended up inside the last line. However this is over complicated, as file is iterator.So make it list and take random.choice (if you need many, use random.sample):
| ||||
|
feedback
|
|
It depends what do you mean by "too much" overhead. If storing whole file in memory is possible, then something like
would do the trick. | ||||
|
feedback
|
|
Seek to a random position, read a line and discard it, then read another line. The distribution of lines won't be normal, but that doesn't always matter. | |||||
feedback
|