Posts

Showing posts with the label Digitization

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 ]

New Directions for Digital Products (1 of 2)

Image
We already crossed Agriculture, Industrial, Information age. Now we are in digitization age. Many companies investing huge money in digitization. Mphasis - is betting on the digitization of Financial institutions Tech Mahindra - started research on Heath care digitization Infosys - focusing on Automation and artificial intelligence TCS - focussing on Machine learning WIPRO - is focusing on Big data and Hadoop What is digitization What we mean by digital. Digital data is distinguished from analog data in that the datum is represented in discrete, discontinuous values, rather than the continuous, wavelike values of analog. Thus, the digitization of data refers to the conversion of information into binary code, allowing for more efficient transmission and storage of data. A key differentiator of our current age from prior human history is that, as of the last decade, we not only convert data to a digital format, but we also create data in a digital format. Thus, we now h