This application is a python based note management system built using the principles of python object oriented programming(OOP). It allows users to create, organize, and manage different types of notes efficiently.
• add_note(note_type, content, reminder_time=None): This feature adds a new note of the specified type.
• delete_note(note_id):This removes a note by its ID.
• show_notes(): This displays all stored notes.
• search_notes(keyword): This finds notes that contain a specific keyword.
Python Programming
Object-Oriented Programming (OOP) principles