G7 programing language Teacher / Shamsa Hassan Alhassouni.

Slides:



Advertisements
Similar presentations
PERFORMING CALCULATIONS IN SCIENTIFIC NOTATION
Advertisements

(BASIC MATH) QUIZ. START!! Click Here!! 1. What is Addition? a. The act or process of adding numbers. The act or process of adding numbers. b. The act.
Integer Rules. Adding with the same sign Rules Rules Add like normal Add like normal Keep the sign Keep the sign Examples Examples = -22 (all.
Targeting Grade C Number Unit 1 Decimals GCSE Mathematics.
Addition, Subtraction, Multiplication, and Division of Integers
Dividing Decimals © Math As A Second Language All Rights Reserved next by Powers of Ten 5.NBT#7.
Integers All whole numbers and their opposites including the number 0.
Integers 7th Grade Math.
Definitions Add & Subtract Multiply & Divide ExponentsMixed.
Lesson 6-3 Example Find the difference of 3 and –2. Use the number line. Step 1Write the subtraction expression. 3 – (–2)
Maths in Python [ slide 5 ] 1.Copy the table 2.Race a friend with a calculator to see whether Python is faster than a calculator: a) 5 * 6.5 = b)7 / 3.
PROPERTIES OF EXPONENTS
8 th Grade Math Chapter 2 Review. Chapter 2 Review 1)Use >, < or = to compare a) -7 < 7 b) -3 < -1 □ □
Dividing Polynomials – Part 2 Honors Math – Grade 8.
Python Lesson 1 1. Starter Create the following Excel spreadsheet and complete the calculations using formulae: 2 Add A1 and B1 A2 minus B2 A3 times B3.
I’m Thinking of a Number
Addition Multiplication Subtraction Division. 1.If the signs are the same, add the numbers and keep the same sign = = If the.
7 th Grade Math Honors LESSON 7. Multiplying & Dividing Decimal Numbers - Estimation  Multiplying 1. Pretend that the decimals are not there and multiply.
Laws of Exponents Prepared by: Ruby Rose Concepcion III- B Math.
A set of whole numbers and opposites ADDING POSITIVE AND NEGATIVE INTEGERS.
Intro to Math… Lesson 1. 4 Fundamental Operations Of Math Example: adding + subtracting - multiplying x dividing ÷
A Playful Introduction to Programming by Jason R. Briggs
Integers Rules of Operation.
Adding, Subtracting, Multiplying, and Dividing Integers
Internalizing The Closure Property Grades 3 – 5
Algebra 1 Notes: Lesson 2-2 Rational Numbers
+/Integers-* By: Brock and Brandon.
DIVIDING INTEGERS The University of Texas at Dallas.
Adding and Subtracting Integers is like …
G7 programing language Teacher / Shamsa Hassan Alhassouni.
To write a Python program, you first need to open Pyscripter
Practice Problems Adding Integers
For -G7 programing language Teacher / Shamsa Hassan Alhassouni.
For -G7 programing language Teacher / Shamsa Hassan Alhassouni.
Unit 2. Day 1..
G7 programing language Teacher / Shamsa Hassan Alhassouni.
Adding, Subtracting, Multiplying, and Dividing Integers
Unit 1. Day 5..
Domain 1: The Number System
Unit 1. Day 1..
Review # 2 Math 8.
Operations with Integers
For -G7 programing language Teacher / Shamsa Hassan Alhassouni.
Learning Outcomes –Lesson 4
Properties of Numbers Use mental math to simplify –2 • 13 • 5.
For -G7 programing language Teacher / Shamsa Hassan Alhassouni.
For -G7 programing language Teacher / Shamsa Hassan Alhassouni.
More Maths Programming Guides.
Year 7 Number - Calculations
1-8 Multiplying and Dividing Integers
Divide the number in C by 10.
Math Journal Notes Unit 5.
Suppose I want to add all the even integers from 1 to 100 (inclusive)
Add, Subtract, Divide and Multiply Integers
Two-step equations Today’s Lesson: What: Why:
Multiplying and Dividing Integers
Operations Python code.
Multiply this by 100 to make it a whole number
Unit 2. Day 8..
Beginning Python Programming
Understanding Code Workshop 2.
Math Fu Subtraction Click to begin.
Operations with Integers
EXPONENT RULES.
Add Subtract Multiply Divide
Algebra with Whole Numbers
Order of Operations  + - X.
Multiplication and Division of Integers
Add Subtract Multiply Divide
Divide two Integers.
Presentation transcript:

G7 programing language Teacher / Shamsa Hassan Alhassouni

What we will Learn today? Working with numbers in Python Understand math operations Practical activity

Activity 1. Open the python edu Select ‘the existing project named (grade7-1) Click file > new > python file Give the python file a name. (math7-1) Type the following Print (5+5) then run your file.

Working with Numbers Operation Operator Example Python code Add + 5 + 5 print (5 + 5) Multiply * 2 * 4 print (2*4) Subtract - 10 – 5 print (10-5) Divide / 10 / 2 print (10/2)

Activity Operation Output 1+5 6 1*5 5 5/1 5.0 5-1 4

Challenge question Try the code and Explore the mean of each operation ?? Operation Output 11/4 2.75 11//4 2 11%5 1

Challenge question Operation Output Meaning 11/4 2.75 Divide –normal 11//4 2 Divide and show integers (whole number) 11%5 1 Modulus shows the remain only from division

How easy did find the today’s lesson in python?