A simple Python-based Library Management System where users can view available books, borrow them, and return them after reading.
- List available books: View the list of books in the library.
- Borrow books: Request books if available.
- Return books: Return borrowed books to the library.
This project is developed using Object-Oriented Programming (OOP). It includes classes for Library and Student, with the following functionalities:
- Library Class: Manages the list of books, allowing borrowing and returning of books.
- Student Class: Allows students to request and return books to the library.