From 354680e7f7ffe51777a0e5b7ff0b8475be36a5da Mon Sep 17 00:00:00 2001 From: techiestalks <57028137+techiestalks@users.noreply.github.com> Date: Sat, 26 Oct 2019 11:17:47 +0530 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5d0379e..24075f1 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # hacknight hello -ganpat +let the night begins From ffd2d57b027be422da522d2ebc9dbff44e27932d Mon Sep 17 00:00:00 2001 From: OGharsh <72140506+OGharsh@users.noreply.github.com> Date: Thu, 1 Oct 2020 00:29:08 +0530 Subject: [PATCH 2/2] Create my-pull-request.py --- my-pull-request.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 my-pull-request.py diff --git a/my-pull-request.py b/my-pull-request.py new file mode 100644 index 0000000..601b6a2 --- /dev/null +++ b/my-pull-request.py @@ -0,0 +1,10 @@ +#Code for Hackertoberfest + +from tkinter import * + +window = tkinter.Tk() +# to rename the title of the window +window.title("GUI is meh") +# pack is used to show the object in the window +label = tkinter.Label(window, text = "Welcome to guis").pack() +window.mainloop()