summaryrefslogtreecommitdiff
path: root/python/problems/introduction/fahrenheit_to_celsius/en.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/problems/introduction/fahrenheit_to_celsius/en.py')
-rw-r--r--python/problems/introduction/fahrenheit_to_celsius/en.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/python/problems/introduction/fahrenheit_to_celsius/en.py b/python/problems/introduction/fahrenheit_to_celsius/en.py
new file mode 100644
index 0000000..a2af212
--- /dev/null
+++ b/python/problems/introduction/fahrenheit_to_celsius/en.py
@@ -0,0 +1,18 @@
+# coding=utf-8
+
+id = 180
+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>''',
+}