Is there a built-in method to do it? If not how can I do this without costing too much overhead?

link|improve this question

@Greg That's Perl, not Python – quantumSoup Aug 22 '10 at 5:29
2  
@quantumSoup: The question uses Perl in its examples, but the question is language agnostic. The most useful answers use pseudocode, easily translated to your language of choice. – Greg Hewgill Aug 22 '10 at 5:32
Thanks, I also found this help a lot: mail.python.org/pipermail/tutor/2007-July/055635.html You have to read them into memory though. – Shane Aug 22 '10 at 5:35
1  
@Greg That's not really applicable to file I/O, which can be very different from language to language. – quantumSoup Aug 22 '10 at 5:39
show 1 more comment
feedback

4 Answers

up vote 14 down vote accepted

Not built-in, but algorithm R(3.4.2) (Waterman's "Reservoir Algorithm") from Knuth's "The Art of Computer Programming" is good (in a very simplified version):

import random

def random_line(afile):
    line = next(afile)
    for num, aline in enumerate(afile):
      if random.randrange(num + 2): continue
      line = aline
    return line

The num + 2 produces the sequence 2, 3, 4... The randrange will therefore be 0 with a probablity of 1.0/(num + 2) -- and that's the probability with which we must replace the currently selected line (the special-case of sample size 1 of the referenced algorithm -- see Knuth's book for proof of correctness == and of course we're also in the case of a small-enough "reservoir" to fit in memory;-)... and exactly the probability with which we do so.

link|improve this answer
+1 for translating from MIX to python – aaronasterling Aug 22 '10 at 5:45
1  
This is reservoir sampling, right? – HenryR Aug 22 '10 at 5:50
1  
I've always thought that the random.choice() function should work on arbitrary iterators as well as sequences, implementing exactly the above algorithm. – Greg Hewgill Aug 22 '10 at 5:54
@Greg Hewgill, that would be nice but every tenth question would then be "where did my iterator go" – aaronasterling Aug 22 '10 at 6:08
@aaron, right -- same reason, e.g., there is no len for iterators... the "algorithm" is not hard to see, but consuming the iterator is considered a too-often-surprising effect. It's a series of hard design decisions, of course (e.g., sum does consume the iterator -- the decision there is that the summation may well be all the user requires while the length or one random item is less likely to be so... always iffy decisions either way -- if we had a way to clearly mark a name as "having side effects", like Ruby's trailing bang, the design choices might be different). – Alex Martelli Aug 22 '10 at 14:26
show 1 more comment
feedback
import random
lines = open('file.txt').read().splitlines()
myline =random.choice(lines)
print(myline)

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):

import random
print(random.choice(list(open('file.txt'))))
link|improve this answer
feedback

It depends what do you mean by "too much" overhead. If storing whole file in memory is possible, then something like

import random

random_lines = random.choice(open("file").readlines())

would do the trick.

link|improve this answer
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.

link|improve this answer
2  
In particular, this makes it impossible to ever select the first line (as well as picking other lines with a probability proportional to the length of each previous line). My A doesn't produce a normal distribution either (that would be weird -- what mean, what variance?!), but a uniform one, which seems somewhat more likely to meet the OP's meaning for "random". – Alex Martelli Aug 22 '10 at 5:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.