Posts

Showing posts with the label try and except logic

Featured Post

Python map() and lambda() Use Cases and Examples

Image
 In Python, map() and lambda functions are often used together for functional programming. Here are some examples to illustrate how they work. Python map and lambda top use cases 1. Using map() with lambda The map() function applies a given function to all items in an iterable (like a list) and returns a map object (which can be converted to a list). Example: Doubling Numbers numbers = [ 1 , 2 , 3 , 4 , 5 ] doubled = list ( map ( lambda x: x * 2 , numbers)) print (doubled) # Output: [2, 4, 6, 8, 10] 2. Using map() to Convert Data Types Example: Converting Strings to Integers string_numbers = [ "1" , "2" , "3" , "4" , "5" ] integers = list ( map ( lambda x: int (x), string_numbers)) print (integers) # Output: [1, 2, 3, 4, 5] 3. Using map() with Multiple Iterables You can also use map() with more than one iterable. The lambda function can take multiple arguments. Example: Adding Two Lists Element-wise list1 = [ 1 , 2 , 3 ]

How to Use Python Try and Except Logic Correctly

Image
In Python, you can avoid exceptions using Try and Except logic. The Error-free programs save a lot of time. Also, you can keep away defects in production.   How to Use Python Try and Except Logic Correctly In Python, you can handle un-known errors by using TRY and EXCEPT logic. If the programmer does not take care of this, the default is for  Python to print  an error message and stops execution.  So the responsibility of a programmer is upfront he/she has to find errors and handle them correctly. It is possible if you use the  TRY and EXCEPT. Python Syntax for Try and Except. try:       c = a/b except:       c = 1000000 Try ends with ':' it says that Try block start here. In this block, you can write actual logic. The Except: is another block. That means in this block programmer can specify some value. And that value populates when any error happens. Try and Except Examples. Example: 1. Below is the example to give the expected error in except. try:       c = a/b except Ze