summaryrefslogtreecommitdiff
path: root/python/problems/introduction/fahrenheit_to_celsius/en.py
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@araneo.org>2015-08-31 15:44:29 +0200
committerTimotej Lazar <timotej.lazar@araneo.org>2015-08-31 15:44:29 +0200
commite35f80372f283b81333a8260b07905848ea5f37d (patch)
tree58bc0269adf8e6b52f4d13a0c5834b708bdc38cf /python/problems/introduction/fahrenheit_to_celsius/en.py
parentda9ac95a54f3be7128aace4c09ad0d7b085cd788 (diff)
Add the first Python problem definition
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>''',
+}