Do it now – PAGE 7 You will find your do it now task in your workbook – look for the start button! Sunday, 19 May 2019.

Slides:



Advertisements
Similar presentations
Do Now Noticing skills What does input do?. Annotate your code to explain what happens name = input( “What is your name?\n” ) print(“Hello ”, name) Extension-Python.
Advertisements

Python Programming Using Variables and input. Objectives We’re learning to build functions and to use inputs and outputs. Outcomes Build a function Use.
Lesson 4 Using Variables in Python – Creating a Simple ChatBot Program.
Fill the screen challenge! This is a starter activity and should take 3 minutes [ slide 1 ] 1.Log in to your computer 2.Open IDLE 3.In interactive mode,
WEB TECHNOLOGY STATEMENT OF INQUIRY: KNOWLEDGE INFLUENCES SOCIETY IN A DIVERSITY OF WAYS. HOW IT CONNECTS TO THE LESSON: LESSON 2 COVERS COMPUTER PARTS.
Lesson 1 Operating Systems, Part 1. Objectives Describe and list different operating systems Understand file extensions Manage files and folders.
Lesson 4: Equivalent Fractions  Date:  Objective: SWBAT find equivalent fractions and compare fractions  Do Now:  DON”T DO THE OPENING. NEED TO ADJUST.
Lesson Click here Lesson Junior Elementary Math Mastery + Copyright
Input, Output and Variables GCSE Computer Science – Python.
Page 1 This is page one. I’m talking about it now….
I Input (data) P Process (calculations to be done on input) O Output (information) IPO Charts.
“Tell me and I'll forget; show me and I may remember; involve me and I'll understand.”
Scratch 2.0: Introduction
Do it now activity Green pen activity in books.
Do it now – PAGE 13 You will find your do it now task in your workbook – look for the start button! Thursday, 20 September 2018.
Do it now You will find your do it now task in your workbook – look for the start button! Thursday, 20 September 2018.
Identifying functions and using function notation
G7 programing language Teacher / Shamsa Hassan Alhassouni.
Factoring is the reverse of what process?
Do it now – PAGE 8 You will find your do it now task in your workbook – look for the start button! Tuesday, 20 November 2018.
شاخصهای عملکردی بیمارستان
Lesson Starter Write down the cell ORGANELLES that plant and animal cells have in common Write down the cell ORGANELLES that you would only find in.
Do it now – PAGE 11 You will find your do it now task in your workbook – look for the start button! Wednesday, 21 November 2018.
Do it now – PAGE 11 You will find your do it now task in your workbook – look for the start button! Friday, 23 November 2018.
Chapter 3 Lesson 7: Relating Multiplication and Division
Programming In Lesson 3.
Log onto a computer first then ….
Understanding Browsers
مدل زنجیره ای در برنامه های سلامت
فرق بین خوب وعالی فقط اندکی تلاش بیشتر است
Fantastic Places What parts of this unit have you enjoyed?
Do it now – PAGE 8 You will find your do it now task in your workbook – look for the start button! Wednesday, 02 January 2019.
HTML and CSS eportfolio
What are Computers? E Use this tutorial alongside the numbers coded in your workbook and answer the related questions in each section.
Do it now – PAGE 10 You will find your do it now task in your workbook – look for the start button! Tuesday, 15 January 2019.
The Internet.
Formalizing Relations & Functions
Functions F.IF.1 Understand that a function from one set (called the domain) to another set (called the range) assigns to each element of the domain exactly.
Page 18 Rule: Area Formula: L x W  Input x Input  (Input) = Output
PYTHON: BUILDING BLOCKS Inputs & Outputs
PYTHON: BUILDING BLOCKS Sequencing & Selection
Hypotheses.
Do it now – PAGE 3 You will find your do it now task in your workbook – look for the start button! Tuesday, 09 April 2019.
Python Lesson’S 1 & 2 Mr. Kalmes.
Programming In Lesson 4.
Do it now – PAGE 10 You will find your do it now task in your workbook – look for the start button! Sunday, 28 April 2019.
Python Programming Mr Scicluna.
Basic Lessons 5 & 6 Mr. Kalmes.
Just Basic Lessons 9 Mr. Kalmes.
Just Basic Lesson 19 Mr. Kalmes.
Cat.
Introduction to Python
Types of Computers.
Understanding Browsers
If r = 9, b = 5, and g = −6, what does (r + b − g)(b + g) equal?
Do it now – PAGE 8 You will find your do it now task in your workbook – look for the start button! Sunday, 19 May 2019.
Do it now activity Log onto the computer.
Digital footprint.
Do it now – PAGE 8 You will find your do it now task in your workbook – look for the start button! Sunday, 12 May 2019.
Do it now – PAGE 11 You will find your do it now task in your workbook – look for the start button! Monday, 20 May 2019.
Do it now You will find your do it now task in your workbook – look for the start button! Thursday, 23 May 2019.
Do it now – PAGE 3 You will find your do it now task in your workbook – look for the start button! Thursday, 23 May 2019.
Math Message – Lesson 1-7 The soccer team held a car wash over the weekend to raise money. The team players washed 46 cars on Saturday and 27 cars.
Controlled Assessment
Unit 5A Probability Simulation.
Lesson 3 Properties of Operations
Bellwork.
Year 8 Computer Science Digital Portfolio
Lesson 3.3 Writing functions.
Equations & Graphing Algebra 1, Unit 3, Lesson 5.
Presentation transcript:

Do it now – PAGE 7 You will find your do it now task in your workbook – look for the start button! Sunday, 19 May 2019

Selection statements

“Investigate how to use selection statements to control output” Learning Objective “Investigate how to use selection statements to control output” You will find differentiated outcomes for this lesson on the front of your workbook. Sunday, 19 May 2019

New learning pet = input(“What pet do you have?”) if pet == “cat”: print(“I like cats!”) The print statement

Independent Task Open IDLE from your start menu Complete the activity in your booklet on p8

Can you write a program that outputs different statements based on: Learning Development Adapting your code Can you write a program that outputs different statements based on: their age the names of their pets the name of their favourite TV show

Talk Task What is the name given to the type of code which changes based on the data input? How could your program be improved? Why should you comment your code?

When should you use an if statement? Exit ticket When should you use an if statement? R A G