http://goo.gl/SrIrIE

Start Here

So you're looking at the Python editor and wondering what to do. That's easy! Let's learn about the different parts of the editor. First of all, there are some buttons across the top:

A picture of the buttons along the top of the editor.

Pressing the TAB key will move the focus between the buttons. Pressing ENTER will activate the highlighted button. If you're in the text window (see below) you'll need to press the ESCAPE key to re-focus on the buttons. You can, of course, use your mouse.

What do they do?

My Scripts button Clicking on the "My Scripts" button saves your work, takes you out of the Python editor and returns you to your TouchDevelop script selector.
Download button Click on the "Download" button to save a special "hex" file on your computer. Plug in your BBC micro:bit (it'll show up as USB storage) and drag the newly saved file onto the device. Your code will run (or you'll see an error message scroll past on the device's display).
Snippets button Clicking on the "Snippets" button brings up a menu of Python short-cuts (snippets). Code snippets are short blocks of code to re-use in your own programs. There are snippets for most common things you'll want to do with Python. Select the one you want and fill in the gaps in the code editor to make it do what you want.
Help button Clicking on the "Help" button gets you here. But you knew that already, right..? :-) Notice that your editor is still available but in a separate tab in your browser.
Zoom buttons Everyone likes to show off their awesome Python skills. These buttons are especially useful to zoom-in and zoom-out when you're trying to show your code to a large group of people via a projector.
Info icons The top icon can show one of three pictures:
  • An old fashioned disk (your work has been saved locally)
  • A pencil (the editor has spotted you making unsaved changes)
  • A cloud (your work has been saved on the website)
Click the bottom icon (of a bug) to display a log of all the different things the editor has been up to.

The name and description for your script is shown on the top right hand side. Click them to edit them.

The other part of the editor is the text window:

A picture of the text area in the code editor.

It's very simple to use. Just click and type.

The editor tries to help you out by colouring the text to show what all the different parts of your program are. For example, Python keywords (words built into the Python language) are grey. The brighter coloured words are bits of the program you have created. Brown words are constant values that never change and purple words represent strings of characters to display. All the lines are numbered with the current line highlighted.

http://goo.gl/ArpNbM

Hello, World!

http://goo.gl/zpfrsY

The version of Python that runs on the BBC micro:bit is called MicroPython. It's exactly like real Python except it's designed to run on small devices like the BBC micro:bit. Here's the MicroPython code you need to make your BBC micro:bit say "Hello, World!". Copy and paste it into the Python editor, download it and copy it onto your device (just like Yellow and Blue suggest):

from microbit import *


display.scroll("Hello, World!")

The first line (from microbit import *) tells MicroPython to get all the bits of Python needed to program the micro:bit.

The second line(display.scroll("Hello, World!")) tells MicroPython to use one of those bits of Python (the display module) to scroll the text, "Hello, World!" across the physical display on the front of the device. It's all remarkably obvious. If you followed Yellow and Blue's instructions you should see something like this:

An animation of 'hello world' scrolling over the display.

Can you make it scroll any other messages? Why not try making your BBC micro:bit scroll your name? Remember, MicroPython will scroll everything between the "quotation marks".

Snippets

Snippets are a cool way to avoid typing. The animation below shows you how to use them:

An animation demonstrating how to use snippets.

You can access snippets from the "Snippets" button (see above), but it's a lot quicker and easier to learn the triggers for the different fragments of code, hit the TAB key to expand the snippet and then fill in the remaining blocks of code so it does what you want.

http://goo.gl/bT8a8M

Bug Fixes

Things will go wrong!

You have to imagine Python is the most strict English teacher in the universe... yes, even more strict than that really strict one you have at your school. Put simply, you have to type Python without any mistakes for it to work.

All programmers make mistakes and create bugs. It's a fact of life. When you have a bug MicroPython tries to help you out: it will scroll a message on its display. It may even include a line number. This message is like the first clue in a treasure hunt, you have to figure out the rest yourself.

Common bugs include Syntax Errors (which means you've typed it in wrong) and Name Errors (that mean you've typed in correct Python, but it can't work out what you're coding about).

If you're unsure what to do go read the MicroPython docs. Alternatively, just ask someone who knows what they're doing. If no such person is available you could just follow this handy flow chart:

The XKCD tech support cheat sheet.

Fun Stuff

http://goo.gl/q5DAAW

Python makes it simple to write powerful programs. Can you work out what this program does?

# Press button A for a fortune cookie.
from microbit import *
import random


fortunes = [
    "Never step off a moving bus",
    "This sentence is false",
    "The meaning of life is overrated",
    "Do not touch!",
    "You will receive some advice",
    "My hovercraft is full of eels",
    ]


while True:
    if button_a.is_pressed():
        cookie = random.choice(fortunes)
        display.scroll(cookie)

How could you improve it? What changes could you make?

http://goo.gl/9lcLAf

If you're looking for inspiration (robots, cool light displays and goofy games) you should check out the World Tour. These projects were created by volunteers from the global Python community (of which you're now a member!).