Author: Harry
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
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…
Iterate over a string in Python
Output for all methods: C o p y A s s i g n m e n t
Python | upper() and lower() methods | Convert a string to uppercase or lowercase letters
Output: copyassignment COPYASSIGNMENT
Python | join() | Join list of strings
Output: str1 str2 str3 str1 and str2 and str3
Python | isalnum() method | check if a string consists only of alphabetical characters or numerical digits
Output: True False
Python | isupper() and islower() methods to check if a string is in all uppercase or lowercase letters
Output: True False True False