Skip to content

Commit 39e23f0

Browse files
Python Tkinter Using Excel Spreadsheets start
1 parent 87cb7e2 commit 39e23f0

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed
Binary file not shown.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#----------------------------------------------------------#
2+
# Python Tkinter Using Excel Spreadsheets
3+
# Python Tkinter usando hojas de cálculo de Excel
4+
5+
#----------------------------------------------------------#
6+
7+
from tkinter import *
8+
from tkinter import messagebox
9+
10+
11+
root = Tk()
12+
13+
root.title('Python Tkinter Using Excel Spreadsheets')
14+
root.iconbitmap('Python Tkinter Using Excel Spreadsheets/Icons/file.ico')
15+
root.geometry("500x400")
16+
17+
18+
root.mainloop()

0 commit comments

Comments
 (0)