Skip to content

Instantly share code, notes, and snippets.

@Shurastei
Created December 22, 2020 00:10
Show Gist options
  • Save Shurastei/acfd07bff1a30d3f41ff51b88bfbd3ab to your computer and use it in GitHub Desktop.
Save Shurastei/acfd07bff1a30d3f41ff51b88bfbd3ab to your computer and use it in GitHub Desktop.
Programa que peça a temperatura em graus Fahrenheit, transforme e mostre a temperatura em graus Celsius.
tc = float(input('Temperatura em Celsius: '))
print ('Temperatura em Fahrenheit: %.2f' %(9*tc/5 + 32))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment