This project is developed as part of the CodeAlpha Python Programming Internship (Task 4). It is a simple rule-based chatbot that interacts with users based on predefined inputs and replies. The bot takes user messages like "hello", "how are you", and "bye", and responds accordingly using conditional logic.
This repository contains a simple rule-based chatbot developed as part of the CodeAlpha Python Programming Internship (Task 4).
The chatbot interacts with users through the console by responding to predefined inputs like "hello", "how are you", and "bye" using if-elif-else logic.
This is a terminal-based Python chatbot that:
- Understands basic user greetings
- Responds with predefined replies
- Runs continuously until the user types "bye" Itโs designed to help beginners practice Python fundamentals like conditionals, functions, loops, and string manipulation.
- ๐ฅ Accepts user input from the console
- ๐ฌ Responds with simple, friendly messages
- ๐ Runs in a loop until the exit command is given
- ๐ก Easily extendable for more conversations
- Language: Python 3
- Libraries: No external libraries used (only built-in)