5 lines
124 B
Python
5 lines
124 B
Python
|
celcius = float(input('°C: '))
|
||
|
|
||
|
fahrenheit = 1.8 * celcius + 32
|
||
|
|
||
|
print('\n{} °C = {} °F'.format(celcius, fahrenheit))
|