Category: allcategorites
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…
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….
Python | Multiply numbers using lambda
Example 1: Output: Enter 1st number: 2Enter 2nd number: 3Enter 3rd number: 4Multiplication result is: 24 Example 2: Output: Enter numbers: 4 5 6 7840
Python | lambda with pass statement
Output: File “C:\CopyAssignment.py”, line 1 output = lambda: pass ^^^^ SyntaxError: invalid syntax
Python | Add numbers using lambda
Example 1: Output: Enter 1st number: 5Enter 2nd number: 6Enter 3rd number: 7Addition result is: 18 Example 2: Output: Enter numbers: 5 4 3 2…
Spell Checker in Python
Today, we will be creating a GUI application of spell checker in Python. We will use two famous libraries in Python that can be used…