We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87cb7e2 commit 39e23f0Copy full SHA for 39e23f0
Python Tkinter Using Excel Spreadsheets/icons/file.ico
66.1 KB
Python Tkinter Using Excel Spreadsheets/usingExcelSpreadsheets.py
@@ -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