How to sort a dictionary by value in Python?
Posted in allcategorites python-short-tutorial

Python | How to sort a dictionary by value?

Sorting a dictionary by value is a common task in Python and we will see different ways of how can accomplish this task. Also, sorting…

Continue Reading
Posted in allcategorites

Python | How to split a list into equally-sized chunks?

While working with lists in python, you may have encountered a problem with splitting the list into equally-sized chunks. So, this article will help you…

Continue Reading
Remove items from a list while iterating in Python
Posted in allcategorites python-short-tutorial

Python | Remove items from a list while iterating

Many times, it maybe happened that you are trying to process through a list and you don’t want some elements to be part of it….

Continue Reading
How to get dictionary keys as a list in Python?
Posted in allcategorites python-short-tutorial

Python | How to get dictionary keys as a list

In this article, you will learn 6 different methods to get dictionary keys as a list in python. These methods include various Python programming concepts…

Continue Reading
Posted in allcategorites github-copy Machine Learning ml ai ds project

Flower classification using CNN

You know how machine learning is developing and emerging daily to provide efficient and hurdle-free solutions to day-to-day problems. It covers all possible solutions, from…

Continue Reading
How to represent Enum in Python?
Posted in allcategorites python-short-tutorial

How to represent Enum in Python?

Do you know what Enum means in the programming field and how to represent Enum in Python? Let’s clear all of Enum today. Enum short…

Continue Reading
Posted in allcategorites python-short-tutorial

5 methods | Flatten a list of lists | Convert nested list into a single list in Python

You might often want to Flatten a list of lists or convert a list of lists into a single or tuple. For eg., you might…

Continue Reading
What does if "__name__" == "__main__" do in Python?
Posted in allcategorites python python-short-tutorial tutorial

What does if __name__ == __main__ do in Python?

Introduction Most of us have come across the if __name__ == “__main__” in Python while doing a program or we specifically write this function while…

Continue Reading
Posted in allcategorites assignment final year project Machine Learning ml ai ds project ml-shorts

Music Recommendation System in Machine Learning

In this article, we are discussing a music recommendation system using machine learning techniques briefly. Introduction You love listening to music right? Imagine hearing your…

Continue Reading
Brick Breaker Game in C++
Posted in allcategorites c and cpp project ideas

Brick Breaker Game in C++

In this article, we will build the famous Brick Breaker Game in C++. The goal of this game is to smash all the bricks on…

Continue Reading