Snake Game in Python using Pygame
We are providing you the code for a full working Snake Game in Python using Pygame. Most of us may have played this interesting game…
Covid-19 Tracker Application Using Python
Today we are going to make Covid-19 Tracker Application Using Python which you can assume to be a medium level project as we will need…
Get COVID Information Using Python
Python community has made a library to Get COVID Information Using Python Library is”covid” and it’s so simple to use. You can download it using…
URL Opening Application Using Python
Python provides a module “webbrowser” to open any url. To open any URL using this module, we need to type the URL inside function after…
Binary Search In Python
In this article, we will have a short look at Binary Search In Python. Binary Search is a part of algorithms in Computer Science. Binary…
Download YouTube Video Using Python
This is just a two-line youtube video downloader python program but to explain it in a better way we have used the comments. If you…
Python Booleans
In programming, sometimes we want values to be either True or False which has assigned in programming as Boolean values. We can compare two values…
YouTube Video Downloader Using Python
This is just a two-line program but to convert it to GUI YouTube Video Downloader is a bit longer still, this program of GUI YouTube…
Calendar using Python
In this post, we will see how to create a calendar using Python. We will learn 4 different methods to create calendar using Python. For…
Python Tuples
Tuples are sequential data types in Python. A Tuple is an immutable data type in Python i.e. once defined it can not be changed. Use round…
GUI Application To See wifi password in Python
This program is the advanced or you can say GUI version of “See connected wifi passwords using Python“. So if you want to understand the…
URL Shortener Using Python
Python makes it easy to do anything in IT field. Today we will use Python to short any URL. We will be using “pyshorteners” module…
Get IP address using Python
An IP address is a label that is used to identify one or more devices on a computer network, such as the internet. And today…
Tkinter Login GUI with hiding password
Today we are going to discuss how can we create a simple login application using tkinter in Python in which password values will be hidden…
Crack Any Password Using Python
Today we will see a basic program that is basically a hint to brute force attack to crack passwords. In other words, we will make…
Simple Text To Speech In Python
Python offers a very good library to convert any text to speech. The library is known by the name “pyttsx3” and this is super easy…
GUI Calculator Using Tkinter In Python
Simple GUI Calculator Using Tkinter In Python
Password Generator GUI Application In Python
Google gives you suggestions when you create your new passwords Right? But how about creating your own password generator in python, a GUI application? Sounds…