Remove whitespace from the start and end of a string in Python

By Amandeep Singh

In Python, there are several methods for eliminating spaces from a string. The goal of this lesson is to give a brief illustration of each technique we might use to eliminate white.... Read More

How to get the current date and time in C++ in various formats

By HARI HARAN B

Obtaining the current date and time is crucial in many programs. The C++ STL provides the <chrono> library which can be used with <ctime> from c to get the current time.... Read More

Read an image with scipy.misc in Python

By Prachi Pandey

The following tutorial will guide you through reading an image from the path of the image file and returning the NumPy array of the image using scipy.misc. A package scipy.misc is .... Read More

Resize image in Python

By Khushi Aswani

As the title says, resizing images in Python sounds interesting right? We have already been fascinated by the title itself, it will be fun implementing it. We are going to learn ab.... Read More

MonoBehaviour FixedUpdate() in Unity

By Y SAI KIRAN

Hello programmers, In this article, we will discuss the FixedUpdate() method in Unity MonoBehaviour which allows us to make changes in the projects over time. Fixed Update in Unity.... Read More

Delete files larger than a specific size in Python

By Kovid Bhatt

If you want to remove the useless files that consume unnecessary space on your device then this tutorial of deleting files larger than a particular size in Python is for you. You c.... Read More

Return multiple values from a function in JavaScript

By Samim

This tutorial will show you how to return multiple values from a function in JavaScript. A JavaScript function returns only a single value. Multiple values can be returned from a f.... Read More

Vectorized Operations in NumPy with examples

By Prachi Pandey

In this tutorial, we will see the difference in the time taken between normal iterative operations and vectorized operations in NumPy in Python with examples. If we talk about norm.... Read More

Related Posts