Create and edit a course
This guide covers editing an existing course and its lessons.
This guide builds one short course with one lesson, end-to-end. Students run a program, then change it so it prints a second line.
Step 1: Create the course
From the dashboard, select Create Course.
Enter a Course name and a Description. Students see both, for example
Year 8 Python Basics.Set the Year. This sets the reading level of AI marking feedback.
Save, then open your new course from the dashboard.
Step 2: Create the lesson
In Course content, add a lesson and name it, for example
Your first program.Open it.
The lesson opens the way your students see it: files on the left, the code editor in the middle, and the instructions on the right.
Step 3: Write the starting code
In the code editor in the middle, open main.py and give your students something to run:
print("Hello World")Select Run. The output appears in the Console tab on the right.
Step 4: Write the instructions
Select the edit icon at the top right of the instructions panel. Edit Mode shows the whole lesson in one scroll, and your students move through it one chapter at a time with Next.
Write the explanation and the task:
In Python,
print()puts text on the screen. Openmain.pyand select Run.Now change
main.pyso it also outputsThis is my first program.on the line below.
Select Save.
You can also add blocks that change how students work through the lesson:
Accordion for command summaries a student dips into, such as what
print()does.Reveal answer for questions students should attempt before seeing the answer.
Image and Video for flowcharts and short explanations.
Step 5: Choose what your class sees, then check it
In the file list, select the eye button next to
main.pyto show it. New files start hidden, so nothing reaches your students until you show it.Open the file's actions menu and select Create student template, so each student gets their own copy to work in.
Switch to Student Mode at the top right and run the lesson the way a student would.
You should see main.py and no sign of any answer file you kept alongside it.
That is the whole loop. Write the lesson, choose what your class can see, then check it as a student.
Need help?
If a file is showing to students when it should not be, email hello@getkita.com with the course and lesson name.
Last updated
Was this helpful?

