Python Lesson 5 - Recall

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

Cette leçon contient 27 diapositives, avec quiz interactifs et diapositives de texte.

time-iconLa durée de la leçon est: 50 min

Éléments de cette leçon

Python
Lesson 5 - Recap

Slide 1 - Diapositive

What information can be
stored inside a variable?

Slide 2 - Carte mentale

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

Slide 3 - Diapositive

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

Slide 4 - Diapositive

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 - Question ouverte

Refresh
Time to refresh those skills

Slide 12 - Diapositive

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

Slide 13 - Diapositive

Slide 14 - Lien

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 - Diapositive

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 - Diapositive

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 - Question de remorquage

Slide 18 - Lien

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 - Question de remorquage

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 - Diapositive

Slide 21 - Lien

Now Try Yourself

Slide 22 - Diapositive

Slide 23 - Lien

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