For -G7 programing language Teacher / Shamsa Hassan Alhassouni.

Slides:



Advertisements
Similar presentations
Python Arrays. An array is a variable that stores a collection of things, like a list. For example a list of peoples names. We can access the different.
Advertisements

Luminosity measurements at Hadron Colliders
Optomechanics with atoms
Python For Kids – Week 2 Subtitle. Variables  A variable is a container in which a data value can be stored within the computer’s memory  The data can.
The Marks of an Obedient Disciple-maker
Jack Sarkissian, PhD Algostox Trading
Basin Water Balance on the Central Rift Valley
Computational Rocket Science How we built the PSAS LV2 avionics How you can build your own Bart Massey Computer Science Department Portland.
QPCR for quantification of synthetic ecosystems: hurdles and solutions
Chapter 2 – Algebra II 02 Learning Outcomes
CE 382 Geotechnical Engineering I 1st Semester 1435/1436 H
Radar Sources Researched by Islam Ayman
What this is NOT What this IS - CLARIFICATION -.
BRO. OLUBUKUNOLA JEMINUSI
Introduction to metabolomics and data integration
Safety Officers / Collateral Duty Safety Officers:
TALENTS POSSESSIONS STEWARDSHIP Lesson 11 for June 13, 2009 TIME BODY.
Project Instructions You are creating an in depth PowerPoint presentation on a country in Southern Asia. Today you are focused on completing 7 slides.
Understanding World Religions
CHAPTER 32 Drugs Used in the Treatment of Cancer
Mastering the Production of High Quality 3D Printing Filament
J o v i a n P l a n e t s.
Maryland MHBG FIVE (5) PERCENT SET-ASIDE NASMHPD 2014 Conference
Taxing UK residential property
Sarah Tieman, MD LIC Coordinator IUSM Bloomington Campus
Meltem YILMAZ BRAVEHEART.
Prenatal Care Unit 2 Chapter 9.
The National Black Coalition of Federal Aviation Employees Northeast Region Presents Safe Skies “Where Dreams Take Flight” International Aviation Career.
History of Mathematics Course
N. Mofa 1, Z. Mansurov 1, G. Xanthopoulou 2
PROGRAM Harnessing the Power of Home Care 2014
Atralin Tretinoin Gel 0.05 Price
Computer Applications
Room 208 Welcome to Homeroom.
Star Squared PR Credentials 2016.
WHERE STARTUPS GOVERNMENT AND TECHNOLOGY MEET
Wadden Sea World Heritage at the ITB 2017
Public Relations How to “Spread the Word”.
Smokefree Summer 2015: Design, delivery and evaluation of an innovative campaign 10 June Andrea Crossfield Healthier Futures.
‘Glideways’ of the Great Eastern Ranges
Let’s all be ready We’ll have an ACT problem and then
이 프로젝트는 근세기 들어 방치되어 있던 포탈라궁 아래 콤플렉스에 대해 보호와 개발계획을 세우는 것이다. 그중
5.0 Discrete-time Fourier Transform
OSIRIS images based fragmentation numerical modeling
18.2 Multiplying Polynomials Expressions
Youth sub-culture of the
© 2008 Pearson Addison-Wesley. All rights reserved
Section 1.2 Quadratic Equations.
Frankenstein Presentation
G3 course reading - Tantin
ORGANIC MOLECULES & FUNCTIONAL GROUPS
Prokaryotic Cell Structure
Celebrex Or Ibuprofen For Inflammation
Starter Activity Complete the worksheet provided by your teacher!
Unit 2 Algebraic Reasoning 5th Grade Day 9
Network Effects on Social Networks
AEROSPACE ENGINEERING LABORATORY (MAE308)
Module 9: Mathematical Induction
Starter You have been asked to write a program to store the names of everybody in a class. Assuming there are 20 pupils in the class, how would you do.
G7 programing language Teacher / Shamsa Hassan Alhassouni.
For -G7 programing language Teacher / Shamsa Hassan Alhassouni.
For -G7 programing language Teacher / Shamsa Hassan Alhassouni.
What is an Array? Why Arrays? Programming Examples.
G7 programing language Teacher / Shamsa Hassan Alhassouni.
For -G7 programing language Teacher / Shamsa Hassan Alhassouni.
G7 programing language Teacher / Shamsa Hassan Alhassouni.
For -G7 programing language Teacher / Shamsa Hassan Alhassouni.
Chapter 11 Data Structures.
Physical Development Physical Development: Learning Experience 12
Presentation transcript:

For -G7 programing language Teacher / Shamsa Hassan Alhassouni

What we will Learn today? Understand the concept of Arrays Identify Lists in Python

Arrays

A variable is a memory location that can store a value.. Arrays A variable is a memory location that can store a value.. Series of memory locations or boxes and each box contains a value with the same data type.

Arrays Element 0-9

Lists

shopping= [ “milk”, “coffee”, “rice”, “chicken”] Lists in Python Python uses lists to allow putting many values within the same variable. We can make a list using square brackets [ ] shopping= [ “milk”, “coffee”, “rice”, “chicken”] Colors = [ “red”,”green”,”yellow”,”blue”] Each list should have an index which starts with the number 0

Activity Activity1 Colors.append(“black”)

Create two lists join them together Challenge Activity Create two lists join them together

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