Name mangling in Python
In name mangling process any identifier with two leading underscore and one trailing underscore is textually replaced with _classname__identifier where classname is the name of the current class. It means that any identifier of the form __geek (at least two leading underscores or at most one trailing underscore) is replaced with _classname__geek, where classname is the current class name with leading underscore(s) stripped....
read more
Command Line File Downloader in Python
Python is one of the most popular general-purpose programming languages with a wide range of use cases from general coding to complex fields like AI. One of the reasons for such popularity of python as a programming language is the availability of many built-in as well as third-party libraries and packages....
read more
Automate backup with Python Script
In this article, we are going to see how to automate backup with a Python script....
read more
Macronutrient analysis using Fitness-Tools module in Python
A good diet is an integral aspect of a balanced lifestyle. It defines the well-being of a human being. Nutrients are divided into two categories i.e macronutrients and micronutrients. Macronutrients are the nutrition that the body needs a large amount. Macronutrients provide calories or energy on the other hand micronutrients are those nutrients that the body requires in smaller doses like Calcium, Potassium, Sodium, Iron, Zinc, etc....
read more
How To Automate Google Chrome Using Foxtrot and Python
In this article, we are going to see how to automate google chrome using Foxtrot & Python....
read more
How to Create Fake Access Points using Scapy in Python?
In this article, we are going to discuss how to create fake access points using scapy module in python...
read more
Program to make Indian Flag in Python | Step by Step
Here, We’ll be making Indian Flag in Python using Spyder tool which is a part of Anaconda interface. It is the beginner’s practice problem for python programmers....
read more
Get information about YouTube Channel using Python
Prerequisite: YouTube API...
read more
Python script to change MAC address of Linux machine
What is MAC Address: In a computer network, the MAC Address is used at the lowest networking level, where network interfaces communicate with one another. See details here....
read more
Command Line Scripts | Python Packaging
How do we execute any script in Python?...
read more
How to make a Python program wait?
Have you ever encountered a scenario where you wanted your Python application to pause or run for a predetermined amount of time? You’re not by yourself. Python can pause its execution with the wait function, much like a well-timed comic, yet many coders find themselves in need of this feature. We’ll take you step-by-step through the Python wait function’s usage in this tutorial, covering both fundamental and sophisticated methods. We’ll go over everything, including how to use the time.sleep() function and more advanced applications like loops and threading....
read more
Python PIL | ImageChops.multiply() method
...
read more