diff --git a/Python/gui hello_world.py b/Python/gui hello_world.py new file mode 100644 index 00000000..897d8035 --- /dev/null +++ b/Python/gui hello_world.py @@ -0,0 +1,14 @@ +#Gui to say hello world + +from tkinter import * + + +root=Tk() +root.title("Hello world!") +root.geometry("600x400+100+100") +root.config(bg="black") + +Label(root,text="Hello World !",fg="lightgreen",font="Arial 40 bold",bg="black").pack(pady=70) + + +root.mainloop()