Skip to main content

Posts

Showing posts from June, 2022

How to create a button in Tkinter Python

 Hello guys,  In this blog we are going to learn how to create  a button in Python GUI using Tkinter. HERE"s THE CODE #how to create a button IN python GUI Tkinter import tkinter as tk root = tk.Tk() button = tk.Button(text="Button").pack() root.mainloop() If you are intrested to know how this work i shall be posting in next blog.