A simple text editor built with Python and Tkinter. This app provides basic text editing features such as creating new files, opening and saving text documents, and common text manipulation options like Cut, Copy, and Paste.
- Create: Start a new text document.
- Open: Open existing text files.
- Save: Save the current document to a file.
- Text Operations: Cut, Copy, and Paste text within the editor.
- Help: Access information about the application.
- Python 3.x
- Tkinter (pre-installed with Python)
- Clone the repository or download the
Notepad.pyfile. - Open a terminal or command prompt.
- Navigate to the directory containing
Notepad.py. - Run the application with:
python Notepad.py
- Text Area: A
Textwidget is used for typing and editing text. - Menu Bar: Provides options to create new files, open existing files, save files, and edit text.
- File Handling: Allows the user to open and save files in
.txtformat. - Cut, Copy, Paste: The app supports standard text-editing features like Cut, Copy, and Paste through the Edit menu.