A simple rule-based chatbot built with Python π. This chatbot responds to a few basic user inputs like greetings and farewells, demonstrating fundamental chatbot logic and interactive programming.
π Features
Responds to greetings (hello)
Answers simple questions (how are you)
Ends the chat gracefully (bye)
Provides a default response for unknown inputs
Beginner-friendly and easy to extend
π οΈ How It Works
The chatbot checks the user input against predefined rules:
If the input matches a known phrase β it replies accordingly.
If the input is not recognized β it responds with a fallback message.
The chat continues until the user types "bye".