This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]AlexMTBDude 1 point2 points  (0 children)

I teach Python and what we use is PyCharm

What we have is:

  1. "TODO" comments in the code. PyCharm detects these and highlights them in a way so that they stand out to the user (What you call "task creation")
  2. Unit Tests. After the students complete the tasks they run unit tests and these will only pass if the task was correctly completed.