-2
temperaturas_c = [('Argentina', 20), ('Brasil', 30), ('Estados Unidos', 28)]
I have a list that contains the names of the countries and their temperature in Celsius in a tuple, I would like to transform values in Celsius in Fahrenheit and display the same list of tuples with the country name and temperatures in Fahrenheit
thank you, it worked :)
– Junin