std::fill() and std::fill_n() functions in C++

By Ranjeet V

Hello everyone, in this post we will learn about std::fill() and std::fill_n() functions in C++. These functions are used with vectors to fill values. Let’s discuss more on t.... Read More

struct module in Python and its functions

By Ranjeet V

In this tutorial, we are going to discuss the struct module in Python and its functions. This module is useful for the conversion between C struct and python values. We use a forma.... Read More

Timeout a function in Python

By Pradeep Kumar

Today, We will discuss how to timeout a function in Python. Frequently, We need to run a function but when it takes too much time we want to terminate the function and want to cont.... Read More

How to take input from Keyboard in Pygame using Python

By Deepak Reddy

In this module, we are going to discuss how to take input from the keyboard in Pygame in Python. Like moving the character using the arrow keys i.e when we press left arrow the cha.... Read More

Compute the histogram of a set of data in Python

By Venkata Kalyan

In the tutorial, you will learn how to compute the histogram of a set of data. By using the NumPy module to show the data in the histogram, from picture view using the matplotlib m.... Read More

How to show random picture from a folder in Python

By Venkata Kalyan

This tutorial is about how to show a random picture from a folder in Python. Python contains a lot of Predefined modules. Python has a module that is the random module by using the.... Read More

Dask array in Python

By Venkata Kalyan

In the tutorial, you will learn how to create a Dask array in Python. The array means a collection of similar data elements. The Dask array means the collection of small parts of N.... Read More

Basic input/output in C++

By Siddharth Shankar Debata

In this tutorial, we will learn about the basic input/output in C++. There are many inbuilt libraries to perform input and output operations in C++. In the input operation, we read.... Read More

Related Posts