python notepad

How to Create a Notepad in Python Part – 2 0

How to Create a Notepad in Python Part – 2

Program 1 from tkinter import * import tkinter.messagebox as msgbox import tkinter.filedialog as fd def menuclick(choice): textbox = Text(myroot, width=1200, height=500, font=(‘Arial’, 15, ‘bold’),wrap=WORD) if(choice==’new’): textbox.pack() elif(choice==’newwindow’): filename = fd.askopenfilename(parent=myroot, title=’open file window’,filetypes=((“Text File”,...