faq.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {% extends 'base.html' %}
  2. {% block body %}
  3. <ol>
  4. <li>
  5. How do I submit a solution?
  6. <p>
  7. You need an account. Ask raylu to create you one.
  8. </p>
  9. </li>
  10. <li>
  11. I don't know any Python.
  12. <p>
  13. This is more of "learn to code" exercise than a "learn Python" exercise.
  14. Python just happens to be a good first language. In fact, I only want
  15. participants who have little&ndash;to&ndash;no coding experience.
  16. </p>
  17. </li>
  18. <li>
  19. Why should I learn Python?
  20. <p>
  21. It's a good first language for
  22. <a href="http://docs.python.org/faq/general.html#is-python-a-good-language-for-beginning-programmers">a</a>
  23. <a href="http://www.stanford.edu/~pgbovine/python-teaching.htm">variety</a>
  24. <a href="http://openbookproject.net/thinkcs/python/english3e/foreword.html">of</a>
  25. <a href="http://openbookproject.net/thinkcs/python/english3e/preface.html">reasons</a>.
  26. </p>
  27. <p>
  28. Learning a programming language helps you understand how your computer works.
  29. Addtionally, it makes learning other programming languages much easier.
  30. </p>
  31. </li>
  32. <li>
  33. Which scores are shown on the lab ranking pages?
  34. <p>
  35. Each user's highest score and earliest time with that score are displayed.
  36. </p>
  37. </li>
  38. <li>
  39. Am I allowed to look for help on the web?
  40. <p>
  41. Yes.
  42. </p>
  43. </li>
  44. </ol>
  45. {% endblock %}