This lesson contains 15 slides, with interactive quizzes and text slides.
Lesson duration is: 50 min
Items in this lesson
Python programming
Year 9 - Lesson 1
Slide 1 - Slide
In this lesson, you will...
Conquer: Define programs and describe how they are executed.
Aspire Higher: Write and execute your first Python programs. This will include displaying messages, creating and using variables and input from the keyboard.
Slide 2 - Slide
Python
High level programming language
Allows you to create your own programs
Text based
Slide 3 - Slide
Programs
A program is a set of precise instructions, expressed in a programming language.
Translating the programming language is necessary for a machine to be able to execute the instructions.
Create with code, shows you where your error is. Below is a screenshot that shows this.
Slide 10 - Slide
Variables
In programming, a variable is like a container that holds a piece of information. This information can be anything, like a number, a word, or even a whole sentence!
For example, imagine you have a box that can hold a piece of fruit. You can put an apple in the box, and then later on, you can take the apple out and look at it. In programming, a variable is like that box. You can put information into the variable, and then you can use that information later on in your program.
Slide 11 - Slide
Task 3 - Variables
We are now going to create a variable and then save some data to it. We will then output "print" this data to the screen.
Press the green play button to execute the code.
Slide 12 - Slide
Task 4 : Create an adventure using inputs, outputs and variables to create a story!
Can you create a story like the one below - feel free to change the questions!
Use as many variables as possible to create a customisable story
Slide 13 - Slide
What type of information can be stored in a variable?
A
Only videos
B
Only sounds
C
Only pictures
D
Numbers, text, and other types of data
Slide 14 - Quiz
What is the process of checking a program for errors?