PYTHON PROGRAMMING Week 12 – Tuesday. STARTER What is a flowchart? Do you know any of the symbols used in a flowchart and what they mean?

Slides:



Advertisements
Similar presentations
Repetition Control Structures School of Business Eastern Illinois University © Abdou Illia, Spring 2003 (Week 9, Friday 3/07/2003)
Advertisements

LECTURE 1 CMSC 201. Overview Goal: Problem solving and algorithm development. Learn to program in Python. Algorithm - a set of unambiguous and ordered.
Villanova University Dept. of Civil & Environmental Engineering CEE 3702 Numerical Analysis 1 CEE 3702 Numerical Analysis Lecture 2 Dr. David W. Dinehart.
Exercise Exercise3.1 8 Exercise3.1 9 Exercise
Exercise Exercise Exercise Exercise
Exercise Exercise Exercise Exercise
Exercise Exercise6.1 7 Exercise6.1 8 Exercise6.1 9.
Using the Diagram It Template Copy this presentation to your hard drive. There are two sets of templates: Slides #3 & 4 for a flow chart Slides #5 & 6.
PYTHON PROGRAMMING Week 9 - Wednesday. WRITE A PROGRAM TO:  print all the numbers from 1 to 100  print all the even numbers from 1 to 100  print all.
Adapted from slides by Marie desJardins
PYTHON PROGRAMMING Week 10 – Wednesday. TERMS – CHAPTER 1 Write down definitions for these terms:  Computation  Computability  Computing  Artificial.
PYTHON PROGRAMMING Week 8 - Wednesday. WHAT DO THESE DO? for x in range(5): print x for x in range(1,5): print x for x in range(1,5): print x**2 numbers.
PYTHON PROGRAMMING Week 14 – Tuesday. STARTER You need to find out the average of a set of exam marks for a class. You don’t know how many marks there.
Python File Handling. In all the programs you have made so far when program is closed all the data is lost, but what if you want to keep the data to use.
January 29 th, Advanced Physics Starter: complete problem #32, pg. 146 Reading, pg. 130 – The Friction Force Example problem, pg. 131 Example problem,
By the end of this session you should be able to...
PYTHON PROGRAMING Week 15 – Tuesday.
PYTHON PROGRAMMING Week 6 - Tuesday. WHAT’S AN ALGORITHM?
Definition of Terms Software/Programs Programs that directs the operation of a computer system Set of instructions Codes Programming Process of planning,
The world of Constructs Control Structures. The three Structures Sequence Selection Loop Entry Exit.
ITEC 109 Lecture 11 While loops. while loops Review Choices –1 st –2 nd to ?th –Last What happens if you only use ifs? Can you have just an else by itself?
WEEK 1 You have 10 seconds to name…
Which shows summer?. Today is Wednesday. What day is tomorrow?
Topic: Control Statements. Recap of Sequence Control Structure Write a program that accepts the basic salary and allowance amount for an employee and.
PYTHON PROGRAMMING Week 5 - Tuesday. THE FRIENDSHIP ALGORITHM Note the infinite loop!
Warm Up 04/01 Practice CRCT Problem: Solve the following system of equations using the substitution method: 2x − 3y = − 1 y = x − 1.
PYTHON PROGRAMMING Week 4 - Wednesday. x = 1 while True: print "Too infinity and beyond! " + str(x) x +=1.
PYTHON PROGRAMMING Week 8 - Wednesday. STARTER Fizz Buzz  Let play the game!
Flowcharts C++ Lab. Algorithm An informal definition of an algorithm is: a step-by-step method for solving a problem or doing a task. Input data A step-by-step.
P ROGRAMMING L OGIC GWDA123 Sharon Kaitner, M.Ed. Winter 2015: Week 2.
Week 16 BIO Finals. No First Five Learning Target: Everything!! Today’s Activities: ● Review on your own...Tomorrow Questions! Notecard: ● Front side.
PYTHON PROGRAMMING Week 3 - Tuesday. STARTER Hour of Code Video.
Problem Solving.  Similar to Solving Math Word Problem  Read the Problem  Decide how to go about Solving the Problem  Solve the Problem  Test the.
PYTHON PROGRAMMING Week 5 - Wednesday. THE FRIENDSHIP ALGORITHM Note the infinite loop!
PYTHON PROGRAMMING Week 10 - Tuesday. GLOSSARY PROGRAM  Have a look at the program  Print it out.
IT 210 Week 5 CheckPoint Simple Array Process To purchase this material link CheckPoint-Simple-Array-Process.
IT 210 Week 9 Final Project Currency Conversion To purchase this material link 210-Week-9-Final-Project-Currency-Conversion.
Programming – Algorithms (Flowcharts)
A-level Computing Fizzbuzz programming challenge
Flowchart Symbols Terminal Process Input/ Output Decision
Week 1, Day 4 Snakes Alive 31 June 2016.
Think What will be the output?
PRG 211Competitive Success/snaptutorial.com
MIS 505 Enthusiastic Study/snaptutorial.com
BACK SOLUTION:
PRG 211 Education for Service-- snaptutorial.com
PRG 211 Teaching Effectively- snaptutorial.com
Chapter 16 Component-Level Design
MSIS 655 Advanced Business Applications Programming
Global Challenge Fitness Friend Lesson 2.
Algorithms & Pseudocode & Flowcharts
Conversion Specifiers for Output Statements
Global Challenge Fitness Friend Lesson 2.
Introduction to Flowcharts
Global Challenge Fitness Friend Lesson 2.
Global Challenge Fitness Friend Lesson 2.
No Yes START Do you live in Scotland? Take umbrella See last Flowchart
Global Challenge Fitness Friend Lesson 2.
Introduction to programming
Global Challenge Fitness Friend Lesson 2.

Class 4: Repetition Pretest Posttest Counting Flowchart these!
Global Challenge Fitness Friend Lesson 2.
Starter....
Global Challenge Fitness Friend Lesson 2.
Flowcharts Activity One
WJEC GCSE Computer Science
Algorithms & Pseudocode & Flowcharts
Python Classes In Pune.
Presentation transcript:

PYTHON PROGRAMMING Week 12 – Tuesday

STARTER What is a flowchart? Do you know any of the symbols used in a flowchart and what they mean?

LAST WEEK Use pseudocode for sequence, selection and iteration constructs Write pseudocode solutions to problems Create Python programs for pseudocode

TODAY Flowcharts – intro Python – while loops

FLOWCHARTS - SEQUENCE Example

FLOWCHARTS - SELECTION Example

FLOWCHARTS - ITERATION Example

PYTHON Codecademy – what is your target for this week?

TOMORROW More on flowcharts Python - While loop exercises