Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
GUI-Programming Articles
Page 25 of 25
Average Speed Calculator using Tkinter
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 MoreDifference between DOS and Windows
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