Exercise 1: Write a Python program to convert Celsius values into Fahrenheit, using lambda and map():
Input: Celsius = [39.2, 36.5, 37.3, 37.8]
OUTPUT:
[102.56, 97.7, 99.14, 100.04]
N.B: To convert temperatures in degrees Celsius to Fahrenheit, multiply by 1.8 (or 9/5) and add 32.