def sentences(): ret = [] for _ in xrange(max(3, int(random.normalvariate(30, 10)))): ret.append(sentence()) return " ".join(ret)