Untitled
unknown
plain_text
2 years ago
263 B
4
Indexable
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)Editor is loading...