Skip to content

Commit 65aa154

Browse files
Python Tkinter Tic Tac Toe Game start
1 parent 1ac2aee commit 65aa154

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed
Binary file not shown.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Python Tkinter Tic Tac Toe Game
2+
3+
from tkinter import *
4+
5+
6+
root = Tk()
7+
8+
root.title('Python Tkinter Tic Tac Toe Game')
9+
root.iconbitmap('Python Tkinter Tic Tac Toe Game/Icons/tic-tac-toe.ico')
10+
root.geometry("500x400")
11+
12+
13+
14+
15+
root.mainloop()

0 commit comments

Comments
 (0)