14
Como arredondar para 2 casas decimais com Python?
Estou recebendo muitas casas decimais na saída desse código (conversor de Fahrenheit para Celsius). Meu código atualmente é assim: 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 "We've put …