Python Script

1| temp_celsius = 10.0
2| temp_fahrenheit = (9/5) * temp_celsius + 32
3| temp_celsius = 20.0

Computer Memory

temp_celsius 10.0
temp_fahrenheit 50.0