The module is the main Building Block of Angular which is the group of components, directives, pipes, and services that
Continue reading »Author: Rakesh
What are Python Arrays?
An array is a special variable, that can hold more than one value at a time. An array can hold
Continue reading »Lists in Python
Python Lists are used to store multiple items in a single variable. We create a list using an angle bracket
Continue reading »Difference Between List and Tuple in Python
List and Tuple are complex data types in Python. It is used to store multiple items in a single variable.
Continue reading »Functions in Python
In Python, a function is a block of code that performs a specific task and returns a result. Functions allow
Continue reading »Standard Python Functions
Python has a large number of built-in/standard functions that perform a variety of tasks, such as calculating the square root
Continue reading »Loop Statements in Python
In Python, there are two types of loop statements: for loops and while loops. For Loop in Python It are
Continue reading »Difference between DELETE and TRUNCATE
The difference between DELETE and TRUNCATE command is the most common database interview question. We use the DELETE and TRUNCATE
Continue reading »Exception Handling in Python
Exception handling is a process in which we handle the runtime errors or exceptional events that may occur during the
Continue reading »Flask Installation on Ubuntu 20.04
We are going to learn flask installation on an Ubuntu system/machine. Flask is an open-source Python micro-framework for making APIs
Continue reading »