Kelvin / Celsius / Fahrenheit
Publicado por Perfil removido (última atualização em 03/03/2015)
[ Hits: 8.288 ]
Um script simples para conversão Kelvin/Celsius/Fahrenheit, usando alguns cálculos mais simples, porém não tão comuns por aí, inclusive o último é mais uma gambiarra na verdade, rsrs.
def celtokel(C): # Celsius para Kelvin K = (C + 273.15) return ('\n{K:.2f}K' .format(K = K)) def celtofah(C): # Celsius para Fahrenheit F = (C * 1.8 + 32) return('\n{F:.2f}°F' .format(F = F)) def keltocel(K): # Kelvin para Celsius C = (K - 273.15) return ('\n{C:.2f}°C' .format(C = C)) def keltofah(K): # Kelvin para Fahrenheit F = (K * 1.8 - 459.7) return('\n{F:.2f}°F' .format(F = F)) def fahtocel(F): # Fahrenheit para Celsius C = ((F -32) / 1.8) return ('\n{C:.2f}°C' .format(C = C)) def fahtokel(F): # Fahrenheit para Kelvin K = ((F - 32) / 1.8 + 273) return ('\n{K:.2f}K' .format(K = K)) def menu(): escolha = int(input(''' Menu: 1 - Celsius para Kelvin 2 - Celsius para Fahrenheit 3 - Kelvin para Celsius 4 - Kelvin para Fahrenheit 5 - Fahrenheit para Celsius 6 - Fahrenheit para Kelvin 7 - Sair Escolha: ''')) if escolha == 1: print(celtokel(int(input('Valor em °C(celsius) para ser convertido em K(Kelvin): ')))) elif escolha ==2: print(celtofah(int(input('Valor em °C(Celsius) para ser convertido em °F(Fahrenheit): ')))) elif escolha == 3: print(keltocel(int(input('Valor em K(Kelvin) para ser convertido em °C(Celsius): ')))) elif escolha == 4: print(keltofah(int(input('Valor em K(Kelvin) para ser convertido em °F(Fahrenheit): ')))) elif escolha == 5: print(fahtocel(int(input('Valor em °F(Fahrenheit) para ser convertido em °C(celsius): ')))) elif escolha == 6: print(fahtokel(int(input('Valor em °F(Fahrenheit) para ser convertido em K(Kelvin): ')))) elif escolha == 7: exit() else: print('Escolha Inválida') menu() menu()
Cálculo da fórmula de Bhaskara
Blackjack simples para estudo de iniciantes em Python
Nenhum comentário foi encontrado.
Como gerar qualquer emoji ou símbolo unicode a partir do seu teclado
Instalar e Configurar o Slackware Linux em 2025
Como configurar os repositórios do apt no Debian 12 em 2025
Passkeys: A Evolução da Autenticação Digital
Instalação de distro Linux em computadores, netbooks, etc, em rede com o Clonezilla
Como dividir duas janelas igualmente e lado-a-lado na sua tela
Configurando o Conky para iniciar corretamente no sistema
3 configurações básicas que podem melhorar muito a sua edição pelo editor nano
MOVER ARQUIVO ENTRE PARTIÇOES (3)
Ocomon 6.0.1 - Problemas ao editar configurações estendidas (0)