Fahrenheit Calculator
February 04, 2019
Simple script that calculates degrees Fahrenheit.
# -*- coding: utf-8 -*-
x = float(raw_input("°C: "))
fahrenheit = x * 1.8 + 32
print "Fahrenheit: {0:.1f}°F".format (fahrenheit)
Recent Entries
- Unarchived Memories December 17, 2025
- Fixing CloudFront HTTP/2 Configuration December 15, 2025
- Packets to a Silent Modem December 14, 2025