GUI Number Guessing Game in Java
Posted in allcategorites gui java project java game projects java projects

GUI Number Guessing Game in Java

In this article, we will create a simple Number Guessing Game in Java. This game is simple yet helpful in setting the foundation for logic…

Continue Reading
Posted in allcategorites html css javascript project web projects

Draw House using HTML and CSS

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

Continue Reading
Best JavaScript Projects for Beginners in 2023
Posted in allcategorites general-python project ideas

Best JavaScript Projects for Beginners in 2023

If you are a beginner and looking for a few ideas to really implement and enhance your JavaScript skills, this article is the end of…

Continue Reading
Create Notepad in Java
Posted in allcategorites gui java project java projects

How to create Notepad in Java?

Introduction To build a Notepad in Java we require basic knowledge of java and file operations. Java provides default packages such as Abstract Window Toolkit…

Continue Reading
Super Mario game in Python
Posted in allcategorites

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
Posted in allcategorites programs in python

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)
Posted in allcategorites programs in python python simple programs python-short-tutorial

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
Posted in allcategorites game in python gui python projects python projects

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
Posted in allcategorites programs in python

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
Posted in allcategorites programs in python

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