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
- Filter First, Think Later February 21, 2026
- Five Hundred Bugs That Fuzzers Missed February 20, 2026
- Gemini 3.1 Pro and the 0.1 That Matters February 19, 2026