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 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()