Python import module from parent directory
In this article, we will learn ways to import modules from the parent directory in python. Python has lots of in-built modules to import methods and functions to add functionalities…
Read moreReverse an Array in Python (Using Numpy And Array Module)
In this article, we will learn different ways to reverse an array in python. Reversing an array is one of the basic functions we should learn while working with arrays….
Read moreFind Length of Dictionary in Python with Examples
In this article, we will learn different ways to find the length of a dictionary and its values in python. Find length of dictionary We can find the length of…
Read moreLine continuation | Long statement in Multiple lines in Python
In this article, we will see how to do line continuation when we write a statement or code a long string in python. In python, we cannot split a line…
Read moreHow to Destructure an Array in JavaScript
Javascript is a versatile and powerful programming language that is widely used in web -development. One of the most used features is its ability to manipulate arrays. And one of…
Read moreValidate email using regular expression (Regex) in JavaScript
In web development, email validation is very curial to ensure that the entered email id of a user is correct or not. It is an important aspect of a website…
Read moreHow to return a value from a foreach loop? Javascript
In javascript, forEach is used to execute a function on each element in an array. However, forEach() by default does not return any value. But there are ways by which…
Read moreCreate a vertical line using Html and CSS
In this article, we will discuss the process of creating a vertical line using HTML and CSS, exploring the various ways and styles that we can utilize to achieve the…
Read moreUnderstanding the Inline If Statement in Python
Python is one of the most versatile and powerful languages with lots of features and one of its key features is the ability to use the inline if statement. This…
Read more