Blog
Install Tensorflow and PyTorch with GPU without hassle
Being with Deep Learning for a long time requires installing different packages or third-party software. But working in the GPU can sometimes lead...
Object Oriented Programming in Python
Object-Oriented Programming (OOP) is a significant programming paradigm in programming languages. In Python, everything is an object. For code...
Module in Python
A module in Python is an object that acts as a reference library. In short, each module is a file where various classes, functions, or variable...
Lambda Function in Python
A lambda function is essentially an anonymous or unnamed function. In the previous function section, we saw that the def keyword is used to define a...
Recursion in Python
In programming, recursion is an important topic. When a function calls itself, it is called recursion. Python allows the use of recursion. When...
Function in Python
A function is a specific block of code that performs a distinct and singular task. For instance, an electric fan above our heads rotates, performing...
Loop in Python
Our lives resemble a loop. Waking up in the morning, performing daily rituals, heading to our respective workplaces, having lunch, returning home...
Conditional Statement
Conditional statements play a very important role in programming. Decisions are made through conditional statements. We make various decisions every...
Dictionary in Python
Similar to sets, the dictionary data type in Python is a special data structure not commonly seen in other programming languages. In a dictionary,...