Module 01 • Start Here
Meet Mano& Python.
Mano has a problem. She needs instructions to move through ManoCity. Python is the language we will use to give those instructions.
10 MinutesBeginner1 VideoInteractive Activity
Watch
Mano needs your help.
Watch the story first. Then use the interactive activity below to see how Python turns an instruction into an action.
Watch the lesson, then continue to the interactive activity.
Try It
What happens whenPython runs your code?
Press Run Code and follow the instruction from your program to the final output.
mano.py
1
print("Hello Mano!")
Follow the CodeStep 1 / 4
1
Python reads the instruction
Python reads the instruction from left to right. The word print tells Python that we want something to appear on the screen.
Remember This
Code is a set of instructionsa computer can follow.
Today Python displayed a message. Later the same idea will let you tell ManoBot to move, stop, turn and respond to ManoCity.
Module 02
Variables & Data
Next, teach Python how to remember information Mano will need.