GUI-Programming Articles

Page 25 of 25

Average Speed Calculator using Tkinter

Dev Prakash Sharma
Dev Prakash Sharma
Updated on 25-Mar-2026 579 Views

In this article, we will create a GUI-based application that calculates the average speed of a moving object. The average speed can be calculated using the following formula: Average Speed = Distance / [Hours + (Minutes/60)] We will use Tkinter's Spinbox widget to create input controls for Distance (Kilometers), Hours, and Minutes. The Spinbox allows users to select values from a defined range using up/down arrows. Complete Example from tkinter import * # Create an instance of tkinter frame win = Tk() # Set the geometry and resize the frame win.geometry("700x400") ...

Read More

Difference between DOS and Windows

Kiran Kumar Panigrahi
Kiran Kumar Panigrahi
Updated on 11-Jan-2023 22K+ Views

Both DOS and Windows are types of operating systems. DOS is a single-tasking, single-user and CLI-based OS; whereas Windows is a multitasking, multiuser and GUI-based OS. Read this tutorial to find out more about DOS and Windows and how these two operating systems are different from each other. What is DOS? DOS (Disk Operating System) is a character-based operating system that was developed in the 1980s for IBM-compatible computers. DOS is one of the oldest and widely used computer operating systems. It is a set of computer programs. DOS can perform major functions like file management, allocation of system resources, ...

Read More
Showing 241–242 of 242 articles
« Prev 1 21 22 23 24 25 Next »
Advertisements