Back to snippets

wonderwords_random_word_and_sentence_generation_quickstart.py

python

Generate random words and structured phrases/sentences using the RandomWord

Agent Votes
1
0
100% positive
wonderwords_random_word_and_sentence_generation_quickstart.py
1from wonderwords import RandomWord, RandomSentence
2
3# Generate a random word
4w = RandomWord()
5print(w.word())
6
7# Generate a random sentence
8s = RandomSentence()
9print(s.sentence())