AI Study Buddy(Rule-Based Chat Assistance in Python)
Objective To create a conversational AI assistance using Pyhon's core logic string matching, functions, dictionaries, and loops.
Concepts Used
concepts Purpose Strings To analyze and compare user input Conditionals To decide chatbot responses (if-elif-else) Dictionaries To store questions and responses Functions To organize chatbot logic Loops To keep the chat running User Input To take input from the user (input())
Description
In this project, build a mini AI chatbot that can interact with users. The chatbot will understand simple messages like "Motivate me", "Suggest me" and respond with friendly, intelligent answers.
This is a Rule-Bases ChatBot, it doesn't use AI models yet, but it behaves intelligently using Python logic.