In this section you will find examples of how to code using Python 3

This guide will cover key concepts in programming using Python 3 for examples.

Throughout each of the lessons / sections there will be activities to complete.

Where there are code examples you should try them yourself

Just reading the examples will not help you much.

  • Input (1)

    Input (1)

    Reading input is really important in programming. It means that we can interact with the computer program. There are a number of methods of doing […]


  • Variables

    Variables

    Variables are used to store data and the contents of them can be changed. This could be strings (text), numbers (integers, floats / decimals), or […]


  • Fixing Errors (1)

    Fixing Errors (1)

    Try running the program below: There will be a number of errors that are detected when the program runs. The ones here are called syntax […]


You might also like