Creating a Simple Web Browser with Python and PyQT
In this Python project, we will create GUI-based Web Browser using the Tkinter and Selenium modules. It is a beginner level project, where you will use the webdriver API with...
In this Python project, we will create GUI-based Web Browser using the Tkinter and Selenium modules. It is a beginner level project, where you will use the webdriver API with...
There are many cases where you would like to store complex data in a file or share the data. These are the situations where serializations come into use. In this...
We know that Python is a user-friendly programming language. This property not only applies to the coding part but also the debugging part. Do you know that Python provides a...
It’s a very popular app which helps to manage the tasks. Most of us do have it on our phones. We will be able to develop our own to-do list...
This is the most popular game we have been playing since our childhood. Whenever we found free time in between our classes or at home we always played this game....
We all would have cropped our photos, rotated them, added some filters, etc. Have you ever thought of doing these by using your code? In this article, you will be...
Do you know that you can execute the external processes in Python? We will learn about this feature of Python using the module names ‘subprocess’. So let us start with...
There are many cases we would have come across or will be coming across in the future when we want to test if our code is working properly or not...
A database is an ordered collection of data that can be accessed and modified in the future. When we program in Python, we do come across cases where we need...
Have you ever come across arrays and matrices in mathematics? This article covers the module that helps us in doing different operations on matrices along with its creation. Yes, Python...