Print the full NumPy array without truncation in Python

By Muskan Bani

In this article, we will see how we can print a full NumPy array without truncation in Python. Truncation means making something shorter. The Python interpreter automatically trunc.... Read More

Iterate over the words of a string in Python

By Muskan Bani

In this post, we will iterate over the words of string in Python. Iteration means going through each element one by one. Thanks to Python’s versatility we have many methods i.... Read More

Vectorization in Python

By Muskan Bani

This post will take you to the Vectorization part of Python. We are aware that a sizable amount of statistics must be handled by the majority of the software. Therefore, a computat.... Read More

Simplification of image with binarization in OpenCV Python

By Muskan Bani

This post will take you through the Simplification of images with binarization in OpenCV Python. Image binarization is turning a color image into a black-and-white one. Most comput.... Read More

How to find index of largest element in an array C++

By HARI HARAN B

Finding the index of the largest element in an unsorted array is done through brute force search. If the array is sorted the task is trivial and the index is the length-1 if it’s.... Read More

What does an exclamation mark mean in the Swift language?

By Saruque Ahamed Mollick

In this tutorial, we will see what an exclamation mark means in Swift. And we will also see the purpose of using exclamation mark with an example. In the Swift programming language.... Read More

Shift binary numbers in C++

By YANNAM SATYA AMRUTHA

In this article let’s discuss how we can shift the binary numbers with the help of some example codes in C++. Shift operations are bit-wise operations because we perform thes.... Read More

How to get MAC address of a device in Python

By Kovid Bhatt

In this tutorial, we will write a Python program using a special module called UUID to fetch your system’s MAC address. This module is particularly used to fetch the MAC addr.... Read More

Related Posts