temperaturas_fahrenheit = list(map(lambda c: (c * 9/5) + 32, temperaturas_celsius)) print(temperaturas_fahrenheit) # Saída: [32.0, 72.5, 104.0, 212.0]