Pretty-print of a NumPy array without scientific notation and with given precision

By Kovid Bhatt

Here in this blog, we will understand how to make a numpy array free from scientific notation and with a given precision in Python. This tutorial is very helpful and easy to unders.... Read More

Retrieve key from a dictionary in Swift

By Khushi Aswani

When working on a dictionary, mostly we work on its value but sometimes we are required to fetch the key’s value, this tutorial is all about learning different and easy metho.... Read More

Get all image links from a web page using Python

By Amandeep Singh

Anytime you visit a website, you could find a variety of stuff, from text to photos, music to videos. Sometimes, all you want to do is read the text and skim the material. In other.... Read More

on_delete purpose on Django models

By Aditi Deo

Models in Django are objects  that have specific attributes and functions. They are used to represent and manage data in the database. Using Django we can easily create, update, o.... Read More

Rotate an element by an angle with CSS rotation Property

By Samim

Hello Coders, today we are going to learn about rotating an element by an angle using the CSS rotation property. What is Rotate() function? The rotate() function rotates any elemen.... Read More

make_heap() in C++ STL

By Gnana Prakash

The make heap() is used to create a heap from a set of given values. A heap is a tree type of data structure made up of a complete binary tree. The make_heap() is an in-built funct.... Read More

Crop Images in Node.js

By Samim

In this tutorial, you will see how to crop an image in Node.js. We will use sharp library to crop images. Sharp is an image processing library of Node.js that supports different i.... Read More

How to check if a variable is defined in Java

By Sana Simran

In this post, we will be discussing a variable, how it is declared and how to check its presence in Java. Every program made out of a language contains data that is executed and im.... Read More

Related Posts