Filter List in Python 10 methods
Posted in allcategorites programs in python python-short-tutorial

Filter List in Python | 10 methods

Filter List in Python is the process of selecting specific items from a list that meet certain criteria. This is a task that you will…

Continue Reading
Radha Krishna using Python Turtle
Posted in allcategorites python simple programs python turtle python-short-tutorial

Radha Krishna using Python Turtle

Hello friends, in this article, we will learn to draw a simple drawing of Radha Krishna using Python Turtle. Please share if you like. Image…

Continue Reading
Yield Keyword in Python
Posted in allcategorites python-short-tutorial

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
Python Programming Examples Fundamental Programs in Python
Posted in allcategorites general-python gui python projects programs in python python projects python simple programs python-short-tutorial

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

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

Python | Modify properties of objects 

Output: Amit 60000

Continue Reading
Posted in allcategorites programs in python python simple programs python-short-tutorial

Python classmethod

Output: Your numbers-> 88

Continue Reading
Posted in allcategorites programs in python python simple programs python-short-tutorial

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

Output: Rakesh 50000Amit 60000

Continue Reading
Posted in allcategorites programs in python python simple programs python-short-tutorial

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

Output: 10

Continue Reading
Posted in allcategorites programs in python python simple programs python-short-tutorial

Python | Calculator using lambda

Output: PS C:\CopyAssignment.py” Enter 1. Addition 2. Subtraction 3. Multiplication 4. Division 5. Exit Enter choice: ds Enter integer values only! Enter 1. Addition 2….

Continue Reading