We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7320554 commit b380300Copy full SHA for b380300
ex014.py
@@ -1,8 +1,10 @@
1
+#Temperature Converter
2
#14 Write a program that converts a temperature entered in degrees Celsius to degrees Fahrenheit.
3
celsius = int(input('Enter a temperature in Celsius:'))
4
fahrenheit = ( celsius * 1.8) + 32
5
print(f'If the temperature local is {celsius}°C converting it will be {fahrenheit}°F.')
6
7
+#Conversor de Temperaturas.
8
#14: Escreva um programa que converta uma temperatura digitando em graus Celsius e converta para graus Fahrenheit.
9
'''celsius = int(input('Digite o valor da temperatura em celsius:'))
10
print(f'Convertendo {celsius}ºC para Fahrenheit ficará: {(celsius * 1.8) + 32}ºF.')'''
0 commit comments