Python GUI save a file (filedialog) 💾

Published: 11 August 2020
on channel: Bro Code
43,482
1k

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()


On this page of the site you can watch the video online Python GUI save a file (filedialog) 💾 with a duration of hours minute second in good quality, which was uploaded by the user Bro Code 11 August 2020, share the link with friends and acquaintances, this video has already been watched 43,482 times on youtube and it was liked by 1 thousand viewers. Enjoy your viewing!