Super Mario game in Python

Super Mario game in Python using Pygame

Have you ever wanted to have the power to create the Mario game from scratch? Now, you can create your own Super Mario game in…

Continue Reading

How to get a function name as a string in Python?

Today, we will see the two most used methods to get a function name as a string in Python. Using __name__ to get a function…

Continue Reading
Access dictionary values in Python | dict[key] vs dict.get(key)

Access dictionary values in Python | dict[key] vs dict.get(key)

dict[key] and dict.get(key) are two ways to access dictionary values in Python. The difference is that dict.get(key) takes two arguments while dict[key] takes one argument…

Continue Reading
Ludo Game in Python

Ludo Game in Python

Today we are back with one another fantastic article on game development articles in Python. In this article, we will talk about and learn about…

Continue Reading

Ternary operator in Python: 6 possible methods

There are many ways to make a ternary operator in Python but there exists a one-liner if-else statement that is usually called the ternary or…

Continue Reading

Get the length of a list in Python

Lists in Python are one of the most commonly used built-in data structures. Many times we need to find the length of a list in…

Continue Reading
Memory Game in Java

Memory Game in Java

Playing memory games can improve attention, and concentration and enhance critical thinking. In this article, we will make a Memory game in Java with Swing. This…

Continue Reading

Draw Dog using CSS

Today we are going to Draw Dog using CSS, we will use HTML to structure the page and then use CSS to design the look,…

Continue Reading

Rock Paper Scissor in HTML CSS JavaScript

Today, we will be developing a simple Rock Paper Scissor in HTML CSS JavaScript. This is a hand game, played by two players, and requires…

Continue Reading

ToDo App in PHP with authentication

This tutorial is going to be an exciting and thrilling one as we are going to create a simple ToDo App in PHP with authentication…

Continue Reading
Car Race Game in Java

Simple Car Race Game in Java

When it comes to building gaming applications, we always think of racing games as we loved playing these types of games in our childhood. So…

Continue Reading

ATM program in Java

Introduction In this article, we are going to create an ATM program in Java for representing ATM transactions. In the ATM program, the user has…

Continue Reading
Rock Paper Scissors Game in Python

Rock Paper Scissors Game in Python

Hello folks! Today, we are back with a fantastic tutorial on the Rock Paper Scissors Game in Python. We all are familiar with the topic…

Continue Reading

Drawing Application In Java

Introduction In this article, we will design and build a Drawing Application In Java. In this project, the user can set the background color, draw,…

Continue Reading
Tetris Game in Java Tetris Game in Java Today, we are going to learn how to build the classic Tetris Game in Java with Swing. The game requires the player to rotate and move falling Tetris pieces to an appropriate position so that the player can fill the entire row without a gap, once the row is filled it's automatically cleared and the score increases. But, if the pieces reach the top, the game is over!

Tetris Game in Java

Today, we are going to learn how to build the classic Tetris Game in Java with Swing. The game requires the player to rotate and…

Continue Reading
Snake and Ladder Game in Python

Snake and Ladder Game in Python

Introduction Are you looking for a fun way to learn Python coding? If so, why not create your own Snake and Ladder Game in Python?…

Continue Reading
Pong Game in java

Pong Game in Java

In this article, we are going to build the simple Pong Game in Java. This is a two-player game in which players need to hit…

Continue Reading
Pong Game in HTML and JavaScript

Pong Game in HTML and JavaScript

Today we will learn to make the most out of the javascript learned so far. We will combine the magic of CSS and js with…

Continue Reading
Puzzle Game in Python

Puzzle Game in Python

Who has not played a single puzzle game in their childhood? Probably everyone played once at least. Today, in this article, we will build a…

Continue Reading

Hospital Management System Project in Java

Introduction In this article, we will build Hospital Management System Project in Java and MySQL with source code. This project is great for those at an intermediate…

Continue Reading