Python program Check Armstrong Number using for loop

Python | Check Armstrong Number using for loop

An Armstrong number is a number that is equal to the sum of its own digits raised to the power of the number of digits….

Continue Reading
Python | Factorial of a number using for loop

Python | Factorial of a number using for loop

The factorial of a non-negative integer n, denoted by n!, is the product of all positive integers less than or equal to n. The factorial…

Continue Reading
Create your own ChatGPT with Python

Create your own ChatGPT with Python

ChatGPT is a product of openai, currently ChatGPT is the most famous product of openai but there are many other products. In this article, we…

Continue Reading
Radha Krishna using Python Turtle

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
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

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

Python | lambda function that returns the maximum of 2 numbers

Output: Enter numbers: 1 2 2

Continue Reading

Python | Convert all strings of a list to uppercase using lambda

Output: [‘ONE’, ‘TWO’, ‘THREE’]

Continue Reading

Python | Square numbers of a list using lambda

Output: [1, 4, 9, 16, 25]

Continue Reading

Python | Reverse and convert a string to uppercase using lambda

Output: TNEMNGISSAYPOC

Continue Reading

Python | Convert String to uppercase using lambda

Output: COPYASSIGNMENT

Continue Reading

Python | Reverse a list using lambda

Output: [3, 2, 1]

Continue Reading

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

Python | Square of a number using lambda

Output: Enter number: 525

Continue Reading