RandomWords
RandomWords copied to clipboard
Exception thrown for `get_sentences()` in Python 3.11
The following exception is thrown in Python:
TypeError: Population must be a sequence. For dicts or sets, use sorted(d).
because random.sample(population,...) now requires that population is a sequence; sets are not cast to sequences. See https://docs.python.org/3/library/random.html#random.sample.