bred

Generation

generate functionTue, 17 Jan 2023

takes in a sentence and choose a random word to continue that sentence.

import random def random_word(sentence): words = sentence.split(" ") return random.choice(words) random_word("Hello World")

Want to kickstart your project?Use the new AI Studio to create your code