I´m new in Python and I guess this is a very simple question because I can´t find an answer. I have this code:
Celsius = [39.2, 36.5, 37.3, 37.8]
Fah = map(lambda x: (float(9)/5)*x + 32, Celsius)
print(Fah)
I expect to get:
>>> [102.56, 97.700000000000003, 99.140000000000001, 100.03999999999999]
But I get:
>>> <map object at 0x000000000909CA20>