Python Lesson 5 - Recall

Python
Lesson 5 - Recap
1 / 27
next
Slide 1: Slide
ComputingLower Secondary (Key Stage 3)

This lesson contains 27 slides, with interactive quizzes and text slides.

time-iconLesson duration is: 50 min

Items in this lesson

Python
Lesson 5 - Recap

Slide 1 - Slide

What information can be
stored inside a variable?

Slide 2 - Mind map

Variables
Variables can store
  • Text
  • Numbers
  • Decimals
  • True or false

Slide 3 - Slide

Recall Quiz
Try these questions on things we have covered over the past few lessons. 

Slide 4 - Slide

Code that runs one line after another is known as coding in...
A
Sequence
B
Selection
C
Iteration
D
Recursion

Slide 5 - Quiz

Code that repeats/loops is known as coding in...
A
Sequence
B
Selection
C
Iteration
D
Recursion

Slide 6 - Quiz

Code that only runs when a condition is met is known as coding in...
A
Sequence
B
Selection
C
Iteration
D
Recursion

Slide 7 - Quiz

An example of a loop in python would be:
A
print("this")
B
while x > 0 :
C
if x == 0 :
D
name = input("-->")

Slide 8 - Quiz

A value that is used by the program and can change is known as a...
A
Loop
B
If statement
C
function
D
variable

Slide 9 - Quiz

Which symbol will check is two values are the same in a while condition?
A
!=
B
==
C
=
D
"="

Slide 10 - Quiz

What symbol do I use to comment code?

Slide 11 - Open question

Refresh
Time to refresh those skills

Slide 12 - Slide

Outputs
Used to output messages to the screen
In Python we use print
print ("hello world")

Slide 13 - Slide

Slide 14 - Link

Variables
An area in memory used to store a value the program will use.
The value is likely to change
Here are some examples in Python
name = "Dave"                      - Text 
health = 100                           - Integer
Player_dead = False                  - Boolean  (True/False)

Slide 15 - Slide

Inputs
We often use variables to store inputs from the user
In Python we use input
input ("Question the user will see as a prompt")
So to store a name we would use:
name = input ("What is your name  ? -->  ")

Slide 16 - Slide

filmpref = input("What kind of films do you like? ")

Label the correct parts of the code with the symbols.
Click the icon for more information  
This the the variable name given to a piece of information
This will allow the user to enter information that will be saved to the variable. 
This is a string, we place a question inside so the user knows which information to enter. 

Slide 17 - Drag question

Slide 18 - Link

CORRECT
CAUSE AN ERROR
print = ("Hello")
Print("Yes!")
print("this one)
name = imput("what is your name")
name = input("what is your name")
print("this text")
fav colour = "Green"
age = 10
print("Hello", name)
print("Bye",name")

Slide 19 - Drag question

IF/ELIF/ELSE
When we need to make a decision in a program we use a selection statement.
In Python we use if  elif  and  else

Let's look at some coded examples...

Slide 20 - Slide

Slide 21 - Link

Now Try Yourself

Slide 22 - Slide

Slide 23 - Link

In python you must write IF, ELIF and ELSE in capital letters
A
TRUE
B
FALSE

Slide 24 - Quiz

After every if, elif and else statement you put ...
A
;
B
}
C
:
D
#

Slide 25 - Quiz

an if statement must always have an else component
A
True
B
False

Slide 26 - Quiz

Which of the following if statements would cause an error
A
if name != "Fred":
B
if password == guess:
C
if name = "Bobby":
D
if age >= 18 :

Slide 27 - Quiz