Posts by Saumitra Deshpande
Author Biographical Info: Not available
In this blog, we are going to see how we can solve the Job Sequencing Problem using the greedy method in Python. We are going to do this in Python language. An array of jobs is giv.... Read More
In this blog, we are going to see how to create a simple student management system using Python. We are not going to use any database here. This is just a simple program. The opera.... Read More
In this blog, we are going to see how we can check a tuple for None value in Python. We will provide a sample tuple with a None value and make sure the code checks the tuple and gi.... Read More
In this blog, we are going to see how to make a simple calculator in Python using Tkinter. The calculator is a very basic need and we all use it almost every day. Having a calculat.... Read More
In this blog, we are going to see how we can use the Tkinter library in Python to create radio buttons in a GUI. Radio buttons are used to provide options to the user through a GUI.... Read More
In this blog, we will see how we can insert a GIF into a GUI using Python. We will be using the Tkinter library for this purpose. Tkinter library is the de-facto library of Python .... Read More
In this blog, we are going to see how we can create a drop-down menu in Python using Tkinter. The Dropdown Menu is mostly used while filling forms and providing multiple options to.... Read More
In this post, we are going to see how we can make a word counter using Python. For this, we will be using the split function to make our job easier by reducing the length of code a.... Read More