Yield Keyword in Python

Yield Keyword in Python

In this tutorial, we are going to learn about the Yield keyword in Python. It works like a return statement we used in functions. The…

Continue Reading
Hostel Management System Project in Python

Hostel Management System Project in Python

In this article, we will build a Hostel Management System Project in Python with Graphical User Interface and database integration. We will use the MongoDB…

Continue Reading
Survey Management System In Java`

Survey Management System In Java

In this article, we will learn to create a project on survey management system in Java. There are two actors: The user who can add…

Continue Reading
Hospital Management System Project in C++

Hospital Management System Project in C++

In this article, we will build Hospital Management System Project in C++ and MySQL with source code. This project deals with all the essential operations of managing…

Continue Reading
Student Management System Project in C++

Student Management System Project in C++

In this article, we will build Student Management System Project in C++ and MySQL. Student Management System can help a college or university to maintain…

Continue Reading
Sales Management System Project in Python

Sales Management System Project in Python

Hello friends, in this article, we will see Sales Management System Project in Python. We will add basic features like adding products, deleting products, updating…

Continue Reading
Bank Management System Project in C++

Bank Management System Project in C++

In this article, we will build Bank Management System Project in C++ and MySQL with source code. This project has all the basic functionalities of…

Continue Reading
Download File from URL using Python

Python Download File from URL | 4 Methods

There are many methods and libraries to download file from URL using Python and we will try to cover the most used and reliable methods….

Continue Reading

Library Management System Project in C++

In this article, we will build Library Management System Project in C++ and MySQL with source code. This project is a console application written entirely…

Continue Reading
Scooby-Doo using Python Turtle

Scooby-Doo using Python Turtle

You must have watched the famous cartoon ‘Scooby-Doo‘. Would it not be great, if we were able to draw its character Scooby-Doo using Python Turtle?…

Continue Reading
Python Pattern Programs

Python Pattern Programs to print Star, Pascal, Pyramid, Number, Triangle

Hello people! Today we are back with another fantastic article on various Python Pattern Programs. We all know how brainstorming these types of Python Pattern…

Continue Reading
Python Programming Examples Fundamental Programs in Python

Python Programming Examples | Fundamental Programs in Python

Python is a popular, widely-used programming language and easy to learn for beginners because of its short syntax and readability, and learning to code in…

Continue Reading
Real Estate Management System Project in Python

Real Estate Management System Project in Python

In this article, we will build a Real Estate Management System Project in Python and MySQL. In this project, the users will be able to…

Continue Reading

Python | Delete object of a class

Output: Rakesh 50000 Amit 60000 Rakesh 50000 Traceback (most recent call last): File “C:\CopyAssignment.py”, line 14, in <module> print(obj2.name, obj2.salary) NameError: name ‘obj2’ is not…

Continue Reading

Python | Modify properties of objects 

Output: Amit 60000

Continue Reading

Python classmethod

Output: Your numbers-> 88

Continue Reading

Python | Create a class that takes 2 parameters, print both parameters

Output: Rakesh 50000Amit 60000

Continue Reading

Python | Create a class, create an object of the class, access, and print property value

Output: 10

Continue Reading

Python | Find the maximum element in a list using lambda and reduce()

Output: 40

Continue Reading

Python | filter numbers(that are not divisible by 3 and 4) from a list using lambda and filter()

Output: [12, 24, 36]

Continue Reading