openai / chatgpt-retrieval-plugin

The ChatGPT Retrieval Plugin lets you easily find personal or work documents by asking questions in natural language.
MIT License
20.96k stars 3.68k forks source link

Chatgpt #439

Open Prince997025 opened 5 days ago

Prince997025 commented 5 days ago

import random

def colour_prediction_game(): colours = ['red', 'green'] chosen_colour = random.choice(colours) return chosen_colour

result = colour_prediction_game() print("The predicted colour is:", result)