SlideShare a Scribd company logo
Agenda of LO CS.1.07 W1
1- Warm up about programming 10 min
2- ppt teacher demonstrate about Python 15m
3- Video about Python 5min
4- Practical work Students divided in pairs and use
Anaconda : Spyder or on line Python platform to
create very simple program using python
-3.8.1 7
- Questions and answers as pretest about Python 5 m
8-Refelection 5 min
9- Home work 5 min
Python
Eng. & Educator Osama
Ghandour
LO CS.1.07 W1 - Gain
knowledge and understanding
the meaning of computer
language? 2- Draw conclusions
about concepts: data types,
variables, Conditional
statements, looping statements,
functions and Object Oriented
Programming. Lesson plan
Python
Eng. & Educator Osama
Ghandour
Warm Up
Listen to this video
Offline
On line
Python
Eng. & Educator Osama
Ghandour
Essential Question
1- What is meant
by programming
language and give
some examples?
Python
Eng. & Educator Osama
Ghandour
Essential Question
What are the key
features or
characteristics
of language?
Python
Eng. & Educator Osama
Ghandour
Warm up 5 min
1. meaning of computer language.
2. data types.
3. Variables.
4-Expressions .
5-Python platforms
Eng. & Educator Osama
Ghandour
Python
Anaconda : Spyder or an on line Python platform
Inputs : 1- though console 2- input message 3- sensors 2- Dataset
Python – Cheat sheets
You can install python-2.7.17 or python-3.8.1
Write Program / Code
Eng. & Educator Osama
Ghandour
Python
Installing Anaconda
Eng. & Educator Osama
Ghandour
Anaconda > Use Spyder
Eng. & Educator Osama
Ghandour
Python
Coding window – Ipython console - Variable explorer
Spyder
Eng. & Educator Osama
Ghandour
• code or source code: The sequence of
instructions in a program.
• syntax: The set of legal structures and
commands that can be used in a particular
programming language.
• output: The messages printed to the user by a
program.
• console: The text box onto which output is
printed.
– Some source code editors pop up the console as
an external window, and others contain their own
console window.
Programming basics
Eng. & Educator Osama
Ghandour
Compiling and interpreting
in Python.
Listen to this video
Offline On line
Offline On line
Eng. & Educator Osama
Ghandour
Python
Compiling and interpreting
• Many languages require you to compile
(translate) your program into a form that the
machine understands.
• Python is instead directly interpreted into
machine instructions.
compile execute
outputsource code
Hello.java
byte code
Hello.class
interpret
outputsource code
Hello.py
Eng. & Educator Osama
Ghandour
Expressions
• expression: A data value or set of operations to compute
a value.
Examples: 1 + 4 * 3
42
• Arithmetic operators we will use:
– + - * / addition, subtraction/negation, multiplication,
division
– % modulus, a.k.a. remainder
– ** exponentiation
• precedence: Order in which operations are computed.
– * / % ** have a higher precedence than + -
1 + 3 * 4 is 13
– Parentheses can be used to force a certain order of evaluation.
(1 + 3) * 4 is 16
Eng. & Educator Osama
Ghandour
Numbers
• The usual suspects
• 12, 3.14, 0xFF, 0377, (-1+2)*3/4**5, abs(x), 0<x<=5
• C-style shifting & masking
• 1<<16, x&0xff, x|1, ~x, x^y
• Integer division truncates :-(
• 1/2 -> 0 # 1./2. -> 0.5, float(1)/2 -> 0.5
• Will be fixed in the future
• Long (arbitrary precision), complex
• 2L**100 -> 1267650600228229401496703205376L
– In Python 2.2 and beyond, 2**100 does the same thing
• 1j**2 -> (-1+0j) Eng. & Educator Osama
Ghandour
Variables
• variable: A named piece of memory that can store a value.
– Usage:
• Compute an expression's result,
• store that result into a variable,
• and use that variable later in the program.
• assignment statement: Stores a value into a variable.
– Syntax:
name = value
– Examples: x = 5
gpa = 3.14
x 5 gpa 3.14
– A variable that has been given a value can be used in expressions.
x + 4 is 9
• Exercise: Evaluate the quadratic equation for a given a, b, and c.
Eng. & Educator Osama
Ghandour
Syntax:
print "Message"
print Expression
–Prints the given text message or expression value on the
console, and moves the cursor down to the next line.
print Item1, Item2, ..., ItemN
–Prints several messages and/or expressions on the same line.
• Examples:
print "Hello, world!"
age = 45
print "You have", 65 - age, "years until
retirement"
Output:
Hello, world!
You have 20 years until retirement
print
Eng. & Educator Osama
Ghandour
•input : Reads a number from user input.
–You can assign (store) the result of input into a variable.
–Example:
age = input("How old are you? ")
print "Your age is", age
print "You have", 65 - age, "years until
retirement"
Output:
How old are you? 53
Your age is 53
You have 12 years until retirement
• Exercise: Write a Python program that prompts the
user for his/her amount of money, then reports how
many Nintendo Wiis the person can afford, and how
much more money he/she will need to afford an
additional Wii.
Input
Eng. & Educator Osama
Ghandour
Eng. & Educator Osama
Ghandour
Repetition (loops)
and Selection (if/else)
What we will Learn today
?
Donkey work =
repetition = iteration –
loops – inside it there
are conditions
Text processing
• text processing: Examining, editing, formatting text.
– often uses loops that examine the characters of a string
one by one
• A for loop can examine each character in a string in
sequence.
– Example:
for c in "booyah":
print c
Output:
b
o
o
y
a
h
Eng. & Educator Osama
Ghandour
Strings and numbers
• ord(text) - converts a string into a number.
– Example: ord("a") is 97, ord("b") is 98, ...
– Characters map to numbers using standardized mappings such
as ASCII and Unicode.
• chr(number) - converts a number into a string.
– Example: chr(99) is "c"
• Exercise: Write a program that performs a rotation cypher.
– e.g. "Attack" when rotated by 1 becomes "buubdl"
Eng. & Educator Osama
Ghandour
Python
DrawingPanel
• To create a window, create a drawingpanel and
its graphical pen, which we'll call g :
from drawingpanel import *
panel = drawingpanel(width, height)
g = panel.get_graphics()
... (draw shapes here) ...
panel.mainloop()
• The window has nothing on it, but we can draw
shapes and
lines on it by sending commands to g .
– Example:
g.create_rectangle(10, 30, 60, 35)
g.create_oval(80, 40, 50, 70)
g.create_line(50, 50, 90, 70)
Eng. & Educator Osama
Ghandour
Graphical commands
Command Description
g.create_line(x1, y1, x2, y2) a line between (x1, y1), (x2, y2)
g.create_oval(x1, y1, x2, y2) the largest oval that fits in a box with
top-left corner at (x1, y1) and
bottom-left corner at (x2, y2)
g.create_rectangle(x1, y1, x2, y2) the rectangle with top-left corner at
(x1, y1), bottom-left at (x2, y2)
g.create_text(x, y, text="text") the given text at (x, y)
• The above commands can accept optional outline and fill
colors.
g.create_rectangle(10, 40, 22, 65,
fill="red", outline="blue")
• The coordinate system is y-inverted:(0, 0)
(200, 100)
Eng. & Educator Osama
Ghandour
Drawing with loops
• We can draw many repetitions of the same
item at different x/y positions with for loops.
– The x or y assignment expression contains the
loop counter, i, so that in each pass of the loop,
when i changes, so does x or y.
from drawingpanel import *
window = drawingpanel(500, 400)
g = window.get_graphics()
for i in range(1, 11):
x = 100 + 20 * i
y = 5 + 20 * i
g.create_oval(x, y, x + 50, y + 50, fill="red")
window.mainloop()
• Exercise: Draw the figure at right.
Eng. & Educator Osama
Ghandour
Further programming
• Lab exercises
– Let's go downstairs to the basement computer
labs!
– All resources are available at the following URL:
• http://faculty.washington.edu/stepp/cs4hs/
• What next?
– Lists , Dictionaries , data structures
– Algorithms: searching, sorting, recursion, etc.
– Objects and object-oriented programming
– Graphical user interfaces, event-driven
programming Eng. & Educator Osama
Ghandour
Check your email to Solve the
Online auto answered
quiz 15 min after
school the quiz will be
closed in 10:00pm
after
tomorrowEng. & Educator Osama
Ghandour
Python
Repetition (loops) in
Python.
Listen to this video
Offline On line
Offline On line
Eng. & Educator Osama
Ghandour
Python
Selection (if/else) in
Python
Listen to this video
Offline On line
Offline On line
Eng. & Educator Osama
Ghandour
Python
Summary
1-Repetition (loops).
2- Selection (if/else).
3- Compile the program (Run).
Eng. & Educator Osama
Ghandour
Python
Prepare for next week
According to student’s law
Gn=Wn % Ng
CS.1.07 - 1- Gain knowledge
and understanding the
meaning of computer
language? 2- Draw conclusions
about conceptsEng. & Educator Osama
Ghandour
Python
Reflection
• What is your goal to accomplish in
next week End Using Python?
Eng. and Educator Osama
Ghandour
Python
Home work (s. proj.) 1
• Create a presentation contains some
concepts of computer languages (Python)
and display the Concepts of Repetition
(loops) and Selection (if/else)following the
bellow rubric .
Eng. and Educator Osama
Ghandour
Python
Rubaric
Blue
Design a presentation showing Python to contain some
concepts Repetition (loops)
and Selection (if/else)
Green
Design a presentation showing Python to contain one or
2 Repetition (loops) and Selection (if/else).
Yello
w
missing two points of green level.
Read No presentation .
Eng. and Educator Osama
Ghandour
Python
Resources
• https://www.youtube.com/watch?v=Rtww83GH
0BU
• Other materials:
• https://www.sololearn.com
• https://www.w3schools.com
• www.python.org
Eng. and Educator Osama
Ghandour
Python
Resources
• https://www.youtube.com/user/osmgg2
Other materials:
• https://www.sololearn.com
• https://www.w3schools.com
• www.python.org
• “Learning Python,” 2nd edition, Mark Lutz
and David Ascher (O'Reilly, Sebastopol, CA,
2004) (Thorough. Hard to get into as a quick
read)
Eng. & Educator Osama
Ghandour
Python
Learn and practice through on line web sites
https://www.thewebevolved.com
https://www.123test.com/
https://www.wscubetech.com/
https://www.w3schools.com/
https://www.guru99.com
https://codescracker.com/exam/review.php
https://www.arealme.com/left-right-brain/en/
https://www.proprofs.com/
https://www.geeksforgeeks.org/
https://www.tutorialspoint.com
https://www.sololearn.com
http://www.littlewebhut.com/
Eng. & Educator Osama
Ghandour
Python
If you do not feel happy, smile
and pretend to be happy.
• Smiling produces seratonin
which is a neurotransmitter
linked with feelings of
happiness
Thanks
Engineer and educator/ Osama G. Geris
Eng. & Educator Osama
Ghandour
Python
https://twitter.com/osamageris
https://www.linkedin.com/in/osamaghandour/
https://www.youtube.com/user/osmgg2
https://www.facebook.com/osama.g.geris
Eng. & Educator Osama
Ghandour
Python

More Related Content

PPT
Python week 5 2019 2020 for g10 by eng.osama ghandour
Osama Ghandour Geris
 
PPT
Python week 1 2020-2021
Osama Ghandour Geris
 
PPT
Python week 4 2019 2020 for g10 by eng.osama ghandour
Osama Ghandour Geris
 
PPTX
Programming intro variables constants - arithmetic and assignment operators
Osama Ghandour Geris
 
PPT
Python cs.1.12 week 10 2020 2021 covid 19 for g10 by eng.osama mansour
Osama Ghandour Geris
 
PPT
Python week 7 8 2019-2020 for grade 10
Osama Ghandour Geris
 
PPT
Python week 6 2019 2020 for grade 10
Osama Ghandour Geris
 
PPT
Python week 7 8 2019-2020 for g10 by eng.osama ghandour
Osama Ghandour Geris
 
Python week 5 2019 2020 for g10 by eng.osama ghandour
Osama Ghandour Geris
 
Python week 1 2020-2021
Osama Ghandour Geris
 
Python week 4 2019 2020 for g10 by eng.osama ghandour
Osama Ghandour Geris
 
Programming intro variables constants - arithmetic and assignment operators
Osama Ghandour Geris
 
Python cs.1.12 week 10 2020 2021 covid 19 for g10 by eng.osama mansour
Osama Ghandour Geris
 
Python week 7 8 2019-2020 for grade 10
Osama Ghandour Geris
 
Python week 6 2019 2020 for grade 10
Osama Ghandour Geris
 
Python week 7 8 2019-2020 for g10 by eng.osama ghandour
Osama Ghandour Geris
 

What's hot (20)

PDF
Introduction to python programming
Srinivas Narasegouda
 
PDF
Attention-based Models (DLAI D8L 2017 UPC Deep Learning for Artificial Intell...
Universitat Politècnica de Catalunya
 
PDF
Autoencoders
CloudxLab
 
PDF
Python教程 / Python tutorial
ee0703
 
PDF
Chapter 0 Python Overview (Python Programming Lecture)
IoT Code Lab
 
PDF
Attention mechanisms with tensorflow
Keon Kim
 
PPTX
Introduction to Python Programming
Akhil Kaushik
 
PPTX
Python Tutorial Part 1
Haitham El-Ghareeb
 
PPTX
Transfer learning, active learning using tensorflow object detection api
설기 김
 
PPTX
2019 session 6 develop programs to solve a variety of problems in math , phys...
Osama Ghandour Geris
 
PDF
Code Craft - A game-based approach for teaching introductory programming
Zaher Wanli
 
PDF
Python Scripting Tutorial for Beginners | Python Tutorial | Python Training |...
Edureka!
 
PPTX
Chapter 1 - INTRODUCTION TO PYTHON -MAULIK BORSANIYA
Maulik Borsaniya
 
PPTX
Recurrent Neural Networks for Text Analysis
odsc
 
PDF
Advanced Python Tutorial | Learn Advanced Python Concepts | Python Programmin...
Edureka!
 
PDF
Python for Image Understanding: Deep Learning with Convolutional Neural Nets
Roelof Pieters
 
PDF
What is Python?
wesley chun
 
PDF
孫民/從電腦視覺看人工智慧 : 下一件大事
台灣資料科學年會
 
PPTX
About Python Programming Language | Benefit of Python
Information Technology
 
DOCX
PYTHON NOTES
Ni
 
Introduction to python programming
Srinivas Narasegouda
 
Attention-based Models (DLAI D8L 2017 UPC Deep Learning for Artificial Intell...
Universitat Politècnica de Catalunya
 
Autoencoders
CloudxLab
 
Python教程 / Python tutorial
ee0703
 
Chapter 0 Python Overview (Python Programming Lecture)
IoT Code Lab
 
Attention mechanisms with tensorflow
Keon Kim
 
Introduction to Python Programming
Akhil Kaushik
 
Python Tutorial Part 1
Haitham El-Ghareeb
 
Transfer learning, active learning using tensorflow object detection api
설기 김
 
2019 session 6 develop programs to solve a variety of problems in math , phys...
Osama Ghandour Geris
 
Code Craft - A game-based approach for teaching introductory programming
Zaher Wanli
 
Python Scripting Tutorial for Beginners | Python Tutorial | Python Training |...
Edureka!
 
Chapter 1 - INTRODUCTION TO PYTHON -MAULIK BORSANIYA
Maulik Borsaniya
 
Recurrent Neural Networks for Text Analysis
odsc
 
Advanced Python Tutorial | Learn Advanced Python Concepts | Python Programmin...
Edureka!
 
Python for Image Understanding: Deep Learning with Convolutional Neural Nets
Roelof Pieters
 
What is Python?
wesley chun
 
孫民/從電腦視覺看人工智慧 : 下一件大事
台灣資料科學年會
 
About Python Programming Language | Benefit of Python
Information Technology
 
PYTHON NOTES
Ni
 
Ad

Similar to Python week 2 2019 2020 for g10 by eng.osama ghandour (20)

PPT
Python week 5 2019-2020 for G10 by Eng.Osama Ghandour.ppt
Osama Ghandour Geris
 
PDF
introduction to python programming course
FarhadMohammadRezaHa
 
PPTX
Python programming language presentation
dhanishev1
 
PDF
Introduction to python
mckennadglyn
 
PPT
01 introduction to cpp
Manzoor ALam
 
PDF
Python for Physical Science.pdf
MarilouANDERSON
 
PPT
py4inf-01-intro.ppt
RosemeireArgentiniDe1
 
PPT
ch01-basic-java-programs.ppt
Mahyuddin8
 
PPTX
Begin with c++ Fekra Course #1
Amr Alaa El Deen
 
PDF
01a-Introduction. pds.pdf
AaronJasonBaptist1
 
PPTX
ForLoops.pptx
RabiyaZhexembayeva
 
PDF
python.pdf
BurugollaRavi1
 
PPTX
Lecture1_introduction to python.pptx
MohammedAlYemeni1
 
PPTX
Module 1 - Programming Fundamentals.pptx
GaneshRaghu4
 
PDF
05 python.pdf
SugumarSarDurai
 
PPT
PythonCourse_01_Intro.ppt Python introduction turorial for beginner.
sakchaisengsui
 
PPT
Python introduction turorial for beginner.
sakchaisengsui
 
PDF
Intro to Python for Non-Programmers
Ahmad Alhour
 
PPT
Py4 inf 01-intro
Ishaq Ali
 
PPTX
Java Programming Course for beginners -الدسوقي
kareemtarek40
 
Python week 5 2019-2020 for G10 by Eng.Osama Ghandour.ppt
Osama Ghandour Geris
 
introduction to python programming course
FarhadMohammadRezaHa
 
Python programming language presentation
dhanishev1
 
Introduction to python
mckennadglyn
 
01 introduction to cpp
Manzoor ALam
 
Python for Physical Science.pdf
MarilouANDERSON
 
py4inf-01-intro.ppt
RosemeireArgentiniDe1
 
ch01-basic-java-programs.ppt
Mahyuddin8
 
Begin with c++ Fekra Course #1
Amr Alaa El Deen
 
01a-Introduction. pds.pdf
AaronJasonBaptist1
 
ForLoops.pptx
RabiyaZhexembayeva
 
python.pdf
BurugollaRavi1
 
Lecture1_introduction to python.pptx
MohammedAlYemeni1
 
Module 1 - Programming Fundamentals.pptx
GaneshRaghu4
 
05 python.pdf
SugumarSarDurai
 
PythonCourse_01_Intro.ppt Python introduction turorial for beginner.
sakchaisengsui
 
Python introduction turorial for beginner.
sakchaisengsui
 
Intro to Python for Non-Programmers
Ahmad Alhour
 
Py4 inf 01-intro
Ishaq Ali
 
Java Programming Course for beginners -الدسوقي
kareemtarek40
 
Ad

More from Osama Ghandour Geris (20)

PPTX
functions in python By Eng. Osama Ghandour الدوال فى البايثون مع مهندس اسامه ...
Osama Ghandour Geris
 
PPT
Python cs.1.12 week 9 10 2020-2021 covid 19 for g10 by eng.osama ghandour
Osama Ghandour Geris
 
PPT
Mobile appliaction w android week 1 by osama
Osama Ghandour Geris
 
PPT
6 css week12 2020 2021 for g10
Osama Ghandour Geris
 
PPT
Css week11 2020 2021 for g10 by eng.osama ghandour
Osama Ghandour Geris
 
PPTX
Cooding history
Osama Ghandour Geris
 
PPT
Computer networks--network
Osama Ghandour Geris
 
PPTX
How to print a sketch up drawing in 3d
Osama Ghandour Geris
 
PPT
Google sketch up-tutorial
Osama Ghandour Geris
 
PPTX
7 types of presentation styles on line
Osama Ghandour Geris
 
PPT
Design pseudo codeweek 6 2019 -2020
Osama Ghandour Geris
 
PPT
Php introduction
Osama Ghandour Geris
 
PPT
How to use common app
Osama Ghandour Geris
 
PPTX
Creating databases using xampp w2
Osama Ghandour Geris
 
PPTX
warm up cool down
Osama Ghandour Geris
 
PPT
Flow charts week 5 2020 2021
Osama Ghandour Geris
 
PPTX
Xamppinstallation edited
Osama Ghandour Geris
 
PPTX
Bloom s three pyramids
Osama Ghandour Geris
 
PPTX
The learning experiences ladder
Osama Ghandour Geris
 
PPTX
2019 numbering systems decimal binary octal hexadecimal
Osama Ghandour Geris
 
functions in python By Eng. Osama Ghandour الدوال فى البايثون مع مهندس اسامه ...
Osama Ghandour Geris
 
Python cs.1.12 week 9 10 2020-2021 covid 19 for g10 by eng.osama ghandour
Osama Ghandour Geris
 
Mobile appliaction w android week 1 by osama
Osama Ghandour Geris
 
6 css week12 2020 2021 for g10
Osama Ghandour Geris
 
Css week11 2020 2021 for g10 by eng.osama ghandour
Osama Ghandour Geris
 
Cooding history
Osama Ghandour Geris
 
Computer networks--network
Osama Ghandour Geris
 
How to print a sketch up drawing in 3d
Osama Ghandour Geris
 
Google sketch up-tutorial
Osama Ghandour Geris
 
7 types of presentation styles on line
Osama Ghandour Geris
 
Design pseudo codeweek 6 2019 -2020
Osama Ghandour Geris
 
Php introduction
Osama Ghandour Geris
 
How to use common app
Osama Ghandour Geris
 
Creating databases using xampp w2
Osama Ghandour Geris
 
warm up cool down
Osama Ghandour Geris
 
Flow charts week 5 2020 2021
Osama Ghandour Geris
 
Xamppinstallation edited
Osama Ghandour Geris
 
Bloom s three pyramids
Osama Ghandour Geris
 
The learning experiences ladder
Osama Ghandour Geris
 
2019 numbering systems decimal binary octal hexadecimal
Osama Ghandour Geris
 

Recently uploaded (20)

PDF
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 
PPTX
Civil Engineering Practices_BY Sh.JP Mishra 23.09.pptx
bineetmishra1990
 
PPTX
Chapter_Seven_Construction_Reliability_Elective_III_Msc CM
SubashKumarBhattarai
 
PDF
Introduction to Ship Engine Room Systems.pdf
Mahmoud Moghtaderi
 
PPTX
quantum computing transition from classical mechanics.pptx
gvlbcy
 
PDF
FLEX-LNG-Company-Presentation-Nov-2017.pdf
jbloggzs
 
PPT
1. SYSTEMS, ROLES, AND DEVELOPMENT METHODOLOGIES.ppt
zilow058
 
PDF
2025 Laurence Sigler - Advancing Decision Support. Content Management Ecommer...
Francisco Javier Mora Serrano
 
PDF
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 
PDF
The Effect of Artifact Removal from EEG Signals on the Detection of Epileptic...
Partho Prosad
 
PDF
Construction of a Thermal Vacuum Chamber for Environment Test of Triple CubeS...
2208441
 
PPTX
Information Retrieval and Extraction - Module 7
premSankar19
 
PPTX
MSME 4.0 Template idea hackathon pdf to understand
alaudeenaarish
 
PDF
top-5-use-cases-for-splunk-security-analytics.pdf
yaghutialireza
 
PDF
20ME702-Mechatronics-UNIT-1,UNIT-2,UNIT-3,UNIT-4,UNIT-5, 2025-2026
Mohanumar S
 
DOCX
SAR - EEEfdfdsdasdsdasdasdasdasdasdasdasda.docx
Kanimozhi676285
 
PDF
STUDY OF NOVEL CHANNEL MATERIALS USING III-V COMPOUNDS WITH VARIOUS GATE DIEL...
ijoejnl
 
PPTX
Module2 Data Base Design- ER and NF.pptx
gomathisankariv2
 
PPTX
Victory Precisions_Supplier Profile.pptx
victoryprecisions199
 
PDF
Packaging Tips for Stainless Steel Tubes and Pipes
heavymetalsandtubes
 
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 
Civil Engineering Practices_BY Sh.JP Mishra 23.09.pptx
bineetmishra1990
 
Chapter_Seven_Construction_Reliability_Elective_III_Msc CM
SubashKumarBhattarai
 
Introduction to Ship Engine Room Systems.pdf
Mahmoud Moghtaderi
 
quantum computing transition from classical mechanics.pptx
gvlbcy
 
FLEX-LNG-Company-Presentation-Nov-2017.pdf
jbloggzs
 
1. SYSTEMS, ROLES, AND DEVELOPMENT METHODOLOGIES.ppt
zilow058
 
2025 Laurence Sigler - Advancing Decision Support. Content Management Ecommer...
Francisco Javier Mora Serrano
 
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 
The Effect of Artifact Removal from EEG Signals on the Detection of Epileptic...
Partho Prosad
 
Construction of a Thermal Vacuum Chamber for Environment Test of Triple CubeS...
2208441
 
Information Retrieval and Extraction - Module 7
premSankar19
 
MSME 4.0 Template idea hackathon pdf to understand
alaudeenaarish
 
top-5-use-cases-for-splunk-security-analytics.pdf
yaghutialireza
 
20ME702-Mechatronics-UNIT-1,UNIT-2,UNIT-3,UNIT-4,UNIT-5, 2025-2026
Mohanumar S
 
SAR - EEEfdfdsdasdsdasdasdasdasdasdasdasda.docx
Kanimozhi676285
 
STUDY OF NOVEL CHANNEL MATERIALS USING III-V COMPOUNDS WITH VARIOUS GATE DIEL...
ijoejnl
 
Module2 Data Base Design- ER and NF.pptx
gomathisankariv2
 
Victory Precisions_Supplier Profile.pptx
victoryprecisions199
 
Packaging Tips for Stainless Steel Tubes and Pipes
heavymetalsandtubes
 

Python week 2 2019 2020 for g10 by eng.osama ghandour

  • 1. Agenda of LO CS.1.07 W1 1- Warm up about programming 10 min 2- ppt teacher demonstrate about Python 15m 3- Video about Python 5min 4- Practical work Students divided in pairs and use Anaconda : Spyder or on line Python platform to create very simple program using python -3.8.1 7 - Questions and answers as pretest about Python 5 m 8-Refelection 5 min 9- Home work 5 min Python Eng. & Educator Osama Ghandour
  • 2. LO CS.1.07 W1 - Gain knowledge and understanding the meaning of computer language? 2- Draw conclusions about concepts: data types, variables, Conditional statements, looping statements, functions and Object Oriented Programming. Lesson plan Python Eng. & Educator Osama Ghandour
  • 3. Warm Up Listen to this video Offline On line Python Eng. & Educator Osama Ghandour
  • 4. Essential Question 1- What is meant by programming language and give some examples? Python Eng. & Educator Osama Ghandour
  • 5. Essential Question What are the key features or characteristics of language? Python Eng. & Educator Osama Ghandour
  • 6. Warm up 5 min 1. meaning of computer language. 2. data types. 3. Variables. 4-Expressions . 5-Python platforms Eng. & Educator Osama Ghandour Python
  • 7. Anaconda : Spyder or an on line Python platform Inputs : 1- though console 2- input message 3- sensors 2- Dataset Python – Cheat sheets You can install python-2.7.17 or python-3.8.1 Write Program / Code Eng. & Educator Osama Ghandour Python
  • 8. Installing Anaconda Eng. & Educator Osama Ghandour
  • 9. Anaconda > Use Spyder Eng. & Educator Osama Ghandour Python
  • 10. Coding window – Ipython console - Variable explorer Spyder Eng. & Educator Osama Ghandour
  • 11. • code or source code: The sequence of instructions in a program. • syntax: The set of legal structures and commands that can be used in a particular programming language. • output: The messages printed to the user by a program. • console: The text box onto which output is printed. – Some source code editors pop up the console as an external window, and others contain their own console window. Programming basics Eng. & Educator Osama Ghandour
  • 12. Compiling and interpreting in Python. Listen to this video Offline On line Offline On line Eng. & Educator Osama Ghandour Python
  • 13. Compiling and interpreting • Many languages require you to compile (translate) your program into a form that the machine understands. • Python is instead directly interpreted into machine instructions. compile execute outputsource code Hello.java byte code Hello.class interpret outputsource code Hello.py Eng. & Educator Osama Ghandour
  • 14. Expressions • expression: A data value or set of operations to compute a value. Examples: 1 + 4 * 3 42 • Arithmetic operators we will use: – + - * / addition, subtraction/negation, multiplication, division – % modulus, a.k.a. remainder – ** exponentiation • precedence: Order in which operations are computed. – * / % ** have a higher precedence than + - 1 + 3 * 4 is 13 – Parentheses can be used to force a certain order of evaluation. (1 + 3) * 4 is 16 Eng. & Educator Osama Ghandour
  • 15. Numbers • The usual suspects • 12, 3.14, 0xFF, 0377, (-1+2)*3/4**5, abs(x), 0<x<=5 • C-style shifting & masking • 1<<16, x&0xff, x|1, ~x, x^y • Integer division truncates :-( • 1/2 -> 0 # 1./2. -> 0.5, float(1)/2 -> 0.5 • Will be fixed in the future • Long (arbitrary precision), complex • 2L**100 -> 1267650600228229401496703205376L – In Python 2.2 and beyond, 2**100 does the same thing • 1j**2 -> (-1+0j) Eng. & Educator Osama Ghandour
  • 16. Variables • variable: A named piece of memory that can store a value. – Usage: • Compute an expression's result, • store that result into a variable, • and use that variable later in the program. • assignment statement: Stores a value into a variable. – Syntax: name = value – Examples: x = 5 gpa = 3.14 x 5 gpa 3.14 – A variable that has been given a value can be used in expressions. x + 4 is 9 • Exercise: Evaluate the quadratic equation for a given a, b, and c. Eng. & Educator Osama Ghandour
  • 17. Syntax: print "Message" print Expression –Prints the given text message or expression value on the console, and moves the cursor down to the next line. print Item1, Item2, ..., ItemN –Prints several messages and/or expressions on the same line. • Examples: print "Hello, world!" age = 45 print "You have", 65 - age, "years until retirement" Output: Hello, world! You have 20 years until retirement print Eng. & Educator Osama Ghandour
  • 18. •input : Reads a number from user input. –You can assign (store) the result of input into a variable. –Example: age = input("How old are you? ") print "Your age is", age print "You have", 65 - age, "years until retirement" Output: How old are you? 53 Your age is 53 You have 12 years until retirement • Exercise: Write a Python program that prompts the user for his/her amount of money, then reports how many Nintendo Wiis the person can afford, and how much more money he/she will need to afford an additional Wii. Input Eng. & Educator Osama Ghandour
  • 19. Eng. & Educator Osama Ghandour
  • 20. Repetition (loops) and Selection (if/else) What we will Learn today ?
  • 21. Donkey work = repetition = iteration – loops – inside it there are conditions
  • 22. Text processing • text processing: Examining, editing, formatting text. – often uses loops that examine the characters of a string one by one • A for loop can examine each character in a string in sequence. – Example: for c in "booyah": print c Output: b o o y a h Eng. & Educator Osama Ghandour
  • 23. Strings and numbers • ord(text) - converts a string into a number. – Example: ord("a") is 97, ord("b") is 98, ... – Characters map to numbers using standardized mappings such as ASCII and Unicode. • chr(number) - converts a number into a string. – Example: chr(99) is "c" • Exercise: Write a program that performs a rotation cypher. – e.g. "Attack" when rotated by 1 becomes "buubdl" Eng. & Educator Osama Ghandour Python
  • 24. DrawingPanel • To create a window, create a drawingpanel and its graphical pen, which we'll call g : from drawingpanel import * panel = drawingpanel(width, height) g = panel.get_graphics() ... (draw shapes here) ... panel.mainloop() • The window has nothing on it, but we can draw shapes and lines on it by sending commands to g . – Example: g.create_rectangle(10, 30, 60, 35) g.create_oval(80, 40, 50, 70) g.create_line(50, 50, 90, 70) Eng. & Educator Osama Ghandour
  • 25. Graphical commands Command Description g.create_line(x1, y1, x2, y2) a line between (x1, y1), (x2, y2) g.create_oval(x1, y1, x2, y2) the largest oval that fits in a box with top-left corner at (x1, y1) and bottom-left corner at (x2, y2) g.create_rectangle(x1, y1, x2, y2) the rectangle with top-left corner at (x1, y1), bottom-left at (x2, y2) g.create_text(x, y, text="text") the given text at (x, y) • The above commands can accept optional outline and fill colors. g.create_rectangle(10, 40, 22, 65, fill="red", outline="blue") • The coordinate system is y-inverted:(0, 0) (200, 100) Eng. & Educator Osama Ghandour
  • 26. Drawing with loops • We can draw many repetitions of the same item at different x/y positions with for loops. – The x or y assignment expression contains the loop counter, i, so that in each pass of the loop, when i changes, so does x or y. from drawingpanel import * window = drawingpanel(500, 400) g = window.get_graphics() for i in range(1, 11): x = 100 + 20 * i y = 5 + 20 * i g.create_oval(x, y, x + 50, y + 50, fill="red") window.mainloop() • Exercise: Draw the figure at right. Eng. & Educator Osama Ghandour
  • 27. Further programming • Lab exercises – Let's go downstairs to the basement computer labs! – All resources are available at the following URL: • http://faculty.washington.edu/stepp/cs4hs/ • What next? – Lists , Dictionaries , data structures – Algorithms: searching, sorting, recursion, etc. – Objects and object-oriented programming – Graphical user interfaces, event-driven programming Eng. & Educator Osama Ghandour
  • 28. Check your email to Solve the Online auto answered quiz 15 min after school the quiz will be closed in 10:00pm after tomorrowEng. & Educator Osama Ghandour Python
  • 29. Repetition (loops) in Python. Listen to this video Offline On line Offline On line Eng. & Educator Osama Ghandour Python
  • 30. Selection (if/else) in Python Listen to this video Offline On line Offline On line Eng. & Educator Osama Ghandour Python
  • 31. Summary 1-Repetition (loops). 2- Selection (if/else). 3- Compile the program (Run). Eng. & Educator Osama Ghandour Python
  • 32. Prepare for next week According to student’s law Gn=Wn % Ng CS.1.07 - 1- Gain knowledge and understanding the meaning of computer language? 2- Draw conclusions about conceptsEng. & Educator Osama Ghandour Python
  • 33. Reflection • What is your goal to accomplish in next week End Using Python? Eng. and Educator Osama Ghandour Python
  • 34. Home work (s. proj.) 1 • Create a presentation contains some concepts of computer languages (Python) and display the Concepts of Repetition (loops) and Selection (if/else)following the bellow rubric . Eng. and Educator Osama Ghandour Python
  • 35. Rubaric Blue Design a presentation showing Python to contain some concepts Repetition (loops) and Selection (if/else) Green Design a presentation showing Python to contain one or 2 Repetition (loops) and Selection (if/else). Yello w missing two points of green level. Read No presentation . Eng. and Educator Osama Ghandour Python
  • 36. Resources • https://www.youtube.com/watch?v=Rtww83GH 0BU • Other materials: • https://www.sololearn.com • https://www.w3schools.com • www.python.org Eng. and Educator Osama Ghandour Python
  • 37. Resources • https://www.youtube.com/user/osmgg2 Other materials: • https://www.sololearn.com • https://www.w3schools.com • www.python.org • “Learning Python,” 2nd edition, Mark Lutz and David Ascher (O'Reilly, Sebastopol, CA, 2004) (Thorough. Hard to get into as a quick read) Eng. & Educator Osama Ghandour Python
  • 38. Learn and practice through on line web sites https://www.thewebevolved.com https://www.123test.com/ https://www.wscubetech.com/ https://www.w3schools.com/ https://www.guru99.com https://codescracker.com/exam/review.php https://www.arealme.com/left-right-brain/en/ https://www.proprofs.com/ https://www.geeksforgeeks.org/ https://www.tutorialspoint.com https://www.sololearn.com http://www.littlewebhut.com/ Eng. & Educator Osama Ghandour Python
  • 39. If you do not feel happy, smile and pretend to be happy. • Smiling produces seratonin which is a neurotransmitter linked with feelings of happiness
  • 40. Thanks Engineer and educator/ Osama G. Geris Eng. & Educator Osama Ghandour Python