Introduction to Python-Year 9 (1)
Introduction to Python-Year 9 (1)
Introduction
to Python
1
Click to edit Master title style
BIG QUESTION
2 2
PRE-ASSESSMENT
Click to edit Master title style
TRUE OR FALSE 3 3
PRE-ASSESSMENT
Click to edit Master title style
5 5
Click to edit Master title style
STARTER
6 6
Click to edit
FEATURES OFMaster
PYTHONtitle style
7 7
Click to edit
Content TitleMaster
03 title style
SYNTAX
The Python syntax defines all the set of rules that
are used to create sentences in Python
programming.
For example – We must learn grammar to learn
the English language. In the same way, you will
need to learn and understand the Python syntax in
order to learn the Python language.
8
HOW TO INSTALL PYTHON?
Click to edit Master title style
https://www.python.org
/downloads/
https://www.online-pyt
hon.com/
9 9
Click to edit TASK
INDIVIDUAL Master title style
USE PRINT STATEMENTS AND ANALYSE THE
DIFFERENCE IN OUTPUTS
print("Hello")
What will happen if
print("Hello") you give the
print("World") statement as
print(Hello) without
print("Hello") quotations?
print("\n")
print("World")
10
10
Click to edit Master title style
Variable
X=100
11
11
Click to edit Master title style
“
REFLECTION
Print(num1)
12
12
Click
TASK to edit Master title style
13
13
Click to edit Master title style
PLENARY
Would this line
be printed in one
line or multiple
print(“I”) lines?
print(“can”)
print(“understand ”)
print(“the working”)
print(“of print statements”)
14