Screen Recorder using Python

By Ashika Pemmaiah

Hey there! In this tutorial, we will be learning to build a Screen Recorder using Python in PyCharm. Python is a widely-used general-purpose language, that allows a variety of task.... Read More

Python program for printing odd and even letters of a string

By Aayushi Agrawal

This Python programming article will help you to learn how to print odd and even letters of a given string with the help of a code example. Check how to print odd and even letters .... Read More

Extracting images from a PDF using Python

By Ashika Pemmaiah

Hey there! In this tutorial, we will be learning to extract images contained within a PDF file using Python. Implementation Step 1 Open PyCharm and create a project titled PDF_Ima.... Read More

Tic Tac Toe Game using Java Swing in Java

By Yashika Jain

Hi, Today we are learning how to develop a Tic Tac Toe game using Java Swing in Java. This project uses some java swing functionalities to provide GUI. Java-Swing is a lightweight .... Read More

How to deploy React apps to GitHub pages?

By Muskan Garg

We might build amazing React applications. It’s not worth it unless it’s available on the internet for others to see and use. To make our app accessible to others, we n.... Read More

How to display lists in React Js

By Muskan Garg

Using lists and displaying them is required in almost every app. One of the applications being the menu. We can create lists in React in a similar way as it is created in Javascrip.... Read More

Validate a form manually in React Js

By Muskan Garg

If there is a form in our app, it is necessary to validate it. We have to check if all the fields are correctly filled. This saves us from a lot of problems in the future and also .... Read More

Program to illustrate the use of iterator in Python

By SNEHA S

In this tutorial, let’s see how iterators are implemented in Python. Python allows programmers to create their own custom iterators. For this, you simply have to implement th.... Read More