diff options
author | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2015-11-05 15:03:26 +0100 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2015-11-05 15:03:26 +0100 |
commit | bd276e2c66a8f902c30118aa12e0e8bdd146192e (patch) | |
tree | 1261adaabb85fea0e7450da17d933dbe733ac800 /python/problems/introduction/fahrenheit_to_celsius | |
parent | 6f1df508bd5d09c62eb735a46e3e0127ff7815fd (diff) |
Minor tweak to fahrenheit_to_celsius final hint
Diffstat (limited to 'python/problems/introduction/fahrenheit_to_celsius')
-rw-r--r-- | python/problems/introduction/fahrenheit_to_celsius/sl.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/python/problems/introduction/fahrenheit_to_celsius/sl.py b/python/problems/introduction/fahrenheit_to_celsius/sl.py index 4b53978..948bf5a 100644 --- a/python/problems/introduction/fahrenheit_to_celsius/sl.py +++ b/python/problems/introduction/fahrenheit_to_celsius/sl.py @@ -124,7 +124,12 @@ C = 5/9 * (F – 32). 'final_hint' : [ '''\ -<p>Odlično, program deluje! <br> -Pri tej nalogi si se naučil a) uporabljati funkcijo <code>input</code>, -b) kako spremeniti niz v število, c) računanja v Pythonu in d) izpisati rezultat!</p>'''] +<p>Odlično, program deluje!<br> +Pri tej nalogi si se naučil:</p> +<ul> + <li>uporabljati funkcijo <code>input</code>,</li> + <li>kako spremeniti niz v število,</li> + <li>računati v Pythonu in</li> + <li>izpisati rezultat!</li> +</ul>'''] } |