diff options
author | Timotej Lazar <timotej.lazar@araneo.org> | 2015-09-01 17:28:39 +0200 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@araneo.org> | 2015-09-01 17:28:39 +0200 |
commit | 8a78f388e7bde9cabe140092a832855d3940be7d (patch) | |
tree | 4bb68e82254be0e547d99e68dd17b91ba0a83546 /python | |
parent | eac01a22ad9c12e5625157db11c062021672858e (diff) |
Oops, use : instead of = in dicts
Diffstat (limited to 'python')
-rw-r--r-- | python/problems/introduction/fahrenheit_to_celsius/sl.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/problems/introduction/fahrenheit_to_celsius/sl.py b/python/problems/introduction/fahrenheit_to_celsius/sl.py index f13037c..e1f5ce3 100644 --- a/python/problems/introduction/fahrenheit_to_celsius/sl.py +++ b/python/problems/introduction/fahrenheit_to_celsius/sl.py @@ -10,7 +10,7 @@ stopinjah, program pa jo izpiše v Celzijevih. Med temperaturama pretvarjamo po formuli C = 5/9 (F – 32).</p>''' hint = { - 'plan' = '''\ + 'plan': '''\ <p>Za začetek lahko razdelimo program na 3 dele:</p> <ol> <li>Vprašanje za temperaturo v Fahrenheitih (F = ?).</li> @@ -18,7 +18,7 @@ hint = { <li>Izpis temperature v Celzijih (izpiši C).</li> </ol>''', - 'no_input_call' = '''\ + 'no_input_call': '''\ <p>Uporabnika lahko nekaj vprašamo s funkcijo <code>input</code>. Funkcija <code>input</code> sprejme kot argument niz (<em>angl.</em> string), ki se prikaže uporabniku kot vprašanje in vrne niz, ki ga je uporabnik napisal. Nize |