Play Video in Python Using Pygame

By Deepak Reddy

In this module, we are going to discuss how to play a video file in Python using pygame. Here, we play a video file in pygame using pygame.movie. pygame.movie in Python to play vid.... Read More

Implement Dictionary using Multimap in C++

By Shubham Baniya

Hello Folks!!! Welcome to this tutorial in which you are going to learn how to implement a Dictionary using multimap in C++. Dictionary is a built-in data type in Python that store.... Read More

Banker’s algorithm in Python

By Prashanth Gowda R S

In this tutorial, we will learn about the Banker’s algorithm also referred to as the deadlock algorithm. It simulates the allocation of the predetermined maximum possible amo.... Read More

Reverse first ‘K’ items in a Queue in C++

By Shubham Baniya

Welcome to this tutorial where you are going to learn “How to reverse first ‘K’ items in a Queue in C++”. So without wasting any time let’s begin this.... Read More

Collision Detection in pygame using Python

By Deepak Reddy

In this module, we are going to discuss the collision detection between objects in pygame. This is helpful when we want to less health bar when hit with bullets or when we want to .... Read More

Pangram checking in C++

By Shubham Baniya

Hello and welcome to this tutorial, folks!!!. In this tutorial, we will discuss the approach for checking whether a string is a pangram or not in C++ programming. So let’s be.... Read More

Delete files of a particular type in C++

By Siddharth Shankar Debata

In this tutorial, we will come to know how to delete files of a particular type in C++. Many times, we need to delete multiple files of the same extension. But deleting so many fil.... Read More

How to use zip() function in Python

By Aarushi Dwivedi

In this article, we will learn how to use the zip() function in Python. The function takes multiple iterators as arguments i.e iterator objects the will be joined together. The fun.... Read More

Related Posts