14
¿Cómo redondear a 2 decimales con Python?
Estoy obteniendo muchos decimales en la salida de este código (convertidor de Fahrenheit a Celsius). Mi código actualmente se ve así: def main(): printC(formeln(typeHere())) def typeHere(): global Fahrenheit try: Fahrenheit = int(raw_input("Hi! Enter Fahrenheit value, and get it in Celsius!\n")) except ValueError: print "\nYour insertion was not a digit!" print …