Python GUI save a file (filedialog)

Your video will begin in 10
81 Views
Published
Python GUI filedialog tkinter save a file tutorial for beginners

#Python #GUI #save #filedialog #tkinter #file #tutorial #beginners

from tkinter import *
from tkinter import filedialog

def saveFile():
file = filedialog.asksaveasfile(initialdir="C:\\Users\\Cakow\\PycharmProjects\\Main",
defaultextension='.txt',
filetypes=[
("Text file",".txt"),
("HTML file", ".html"),
("All files", ".*"),
])
if file is None:
return
filetext = str(text.get(1.0,END))
#filetext = input("Enter some text I guess: ") //use this if you want to use console window
file.write(filetext)
file.close()

window = Tk()
button = Button(text='save',command=saveFile)
button.pack()
text = Text(window)
text.pack()
window.mainloop()
Category
Bro Code
Tags
python (programming language), graphical user interface, graphical user interface (industry)
Be the first to comment