tuple of weights in pounds (173, 152, 119, 250) to a tuple of weights in kilograms.
Write a python program that uses the map() function to convert a tuple of weights in pounds (173, 152, 119, 250) to a tuple of weights in kilograms. The conversion formula for pounds to kilograms is kilograms = pounds/2.2. The output should be rounded to 2 decimal places.