bred

Generation

fix invalid codeTue, 17 Jan 2023

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

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

Questions about programming?Chat with your personal AI assistant