Category: allcategorites
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…
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?…
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…
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…
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…
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…
Python | Create a class that takes 2 parameters, print both parameters
Output: Rakesh 50000Amit 60000
Python | Create a class, create an object of the class, access, and print property value
Output: 10
Python | Find the maximum element in a list using lambda and reduce()
Output: 40
Python | filter numbers(that are not divisible by 3 and 4) from a list using lambda and filter()
Output: [12, 24, 36]
Python | lambda function that returns the maximum of 2 numbers
Output: Enter numbers: 1 2 2
Python | Convert all strings of a list to uppercase using lambda
Output: [‘ONE’, ‘TWO’, ‘THREE’]
Python | Reverse and convert a string to uppercase using lambda
Output: TNEMNGISSAYPOC
Drawing letter A using Python Turtle
Today, we will learn how to draw the letter ‘A’ using Python Turtle. We all know how to write the letter ‘A’ using pen and…