Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Google Engine/google-search-engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import googlesearch
# ================== .............. End..........============================

# ================== .......... Window Components........ ============================
# ================== .......... Window Components........ ===================

#creating main window
root = tk.Tk()
Expand Down Expand Up @@ -134,4 +134,4 @@ def search_query():
#===================== Load the Window =============================
root.mainloop()

#======================= End Code =====================================
#======================= End Code =====================================
3 changes: 2 additions & 1 deletion tkinter-1.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
import tkinter as tk

#calling Tk() method
root = tk.Tk()
root = tk.Tk()
#its used for creating gui window

#title() method is used to change the title
root.title("My GUI")
Expand Down