It's a simple GUI Notepad, which will allow you to insert content in it. It also has some features such as cut, copy, and paste. You can easily create a new text document from the file menu. You can also open the old text document and can even save the text documents in the system.
It is the simple Notepad that has been created in python language using the Tkinter module.
- It will allow you to create simple text documents.
- It will also allow you to perform simple operations such as cut, copy, paste on the text of the document.
- You'll be able to create a new document, can open an old one, and can even save the document.
- I have created a menubar that will provide you many options to do the above tasks.
- You can use the code to check other features.
- The good thing about this program is, it doesn't require any prior knowledge. It means even a noob programmer or a non-programmer can easily use it.
You need to have python on your system to use this code. I have used some of the pre-installed modules in this program.
- Download or clone the code from my repo and then open it in any IDE, and run it.
# Modules Used In This Program:
Tkinter module
os module
'''Here I'm giving the list of all the import statements
that I've used in this program'''
from tkinter import *
from tkinter import filedialog as fd
from tkinter import messagebox as tmsg
import os
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
© Logical Coder (Aakash Choudhary)