summaryrefslogtreecommitdiff
path: root/python/problems/introduction/fahrenheit_to_celsius/en.py
blob: 4527bef4fdab128b437d60347929ecddf7b1272d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name = 'Converting Fahrenheit to Celsius'
slug = 'Converting Fahrenheit to Celsius'

description = '''\
<p>Write a program that reads a temperature in degrees Fahrenheit from the
user, and prints the same temperature converted to degrees Celsius. The
conversion formula is C = 5/9 (F – 32).</p>'''

hint = {
    'plan': '''\
<p>(translation missing)</p>''',

    'no_input_call': '''\
<p>(translation missing)</p>''',
}