Skip to content

Commit e745c87

Browse files
Python Tkinter Read and Write to Text Files start
1 parent 0fa3121 commit e745c87

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
Binary file not shown.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Python Tkinter Read and Write to Text Files
2+
# Python Tkinter leer y escribir en archivos de texto
3+
4+
from tkinter import *
5+
6+
root = Tk()
7+
8+
root.title('Learn To Code at Python Tkinter Text Box')
9+
root.iconbitmap('Python Tkinter Text-Box/panda.ico')
10+
root.geometry("600x600")
11+
12+
13+
14+
root.mainloop()

0 commit comments

Comments
 (0)