Random Sentence Generator

  • Share this:

Code introduction


The function utilizes the random module from the Behave library to generate a random sentence. The function accepts a list of words and randomly selects 5 words from the list to form a sentence.


Technology Stack : Python, Behave, random

Code Type : Python Function

Code Difficulty : Intermediate


                
                    
import random

def generate_random_sentence(words):
    return ' '.join(random.choices(words, k=5))