Vijaykrishna Ram

Vijaykrishna Ram

Python Locals

Using the Python locals() function

Today, we’ll be looking at using the Python locals() function. This is yet another utility function which is quite useful for debugging your program. The locals() function gives us the current local symbol table, as a dictionary. Now, if you’re…

Treeview

Tkinter TreeView Widget

Hello again! As a part of our Tkinter tutorial series, today’s post will cover the TreeView widget. The TreeView widget is very useful if you want to display a hierarchy of items, with all attributes listed side by side. For…

Tkinter Button Widget

Tkinter Tutorial – Using Tkinter Buttons

Hello everyone! In today’s article on Tkinter, we’ll cover the Tkinter Button widget. The Tkinter button widget is a very simple and easy-to-use widget. Let’s look at how we can construct buttons and add functionality to our GUI application, using…