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 ]

Cloud Case Study Part-2

Present case study is in Health Care:
 
Practo Technologies was formed in year 2008. The vision of the company was to make medical information digitally accessible to patients and doctors. With all these features at pleasing price, solutions providers like Practo aimed to create the most efficient healthcare experience for people in India and gradually around the world.


The aim was to improve the patient experience for finding and meeting a doctor.

 
Traditionally the healthcare records were created manually and stored on shelves. Managing of records stored in files traditionally was of not much use. With the evolution of technology, there has been a paradigm shift in the manner the healthcare industry functions.
 
The medical records are electronically stored and managed. With the acceptance of cloud computing the healthcare patient data is stored at a remote server location on the internet.
 
The following companies offering CLOUD based health care Service:
 
Practo Ray
 
It is a cloud based flagship product that allows patients to search for doctors and book their appointment online. The dedicated online platform for health professionals and intelligent system that lets users know when the doctor is available. The user friendly and effective practice management software supports online appointment booking, electronic medical records (EMR) and enables effective clinic-patient communication.
Practo Hello:
 
It is the first automated call based software that enables patients to call and book their appointment instantly. The automated voice service responds to the calls made by the patients to book an appointment. The Interactive Voice Response System (IVRS) solution for doctors lets them manage the phone calls made to their clinics and access call recordings while ensuring that no call goes unanswered.
Practo Group
 
It is an online collaborative platform dedicated to healthcare community. The online forum enables healthcare professionals to share views, meet other members and promote their health events. The group service enabled collaboration among like-minded healthcare fraternity.

Comments

Popular posts from this blog

How to Fix datetime Import Error in Python Quickly

SQL Query: 3 Methods for Calculating Cumulative SUM

Python placeholder '_' Perfect Way to Use it