Untitled

 avatar
unknown
plain_text
2 years ago
263 B
2
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...