Untitled
plain_text
a month ago
263 B
0
Indexable
Never
import random responses = [ "Hello, how can I help you?", "I'm here to assist you.", "What can I do for you today?", "Feel free to ask me anything.", ] user_input = input("You: ") ai_response = random.choice(responses) print("AI:", ai_response)