/
ITEC 109 ITEC 109

ITEC 109 - PowerPoint Presentation

tatiana-dople
tatiana-dople . @tatiana-dople
Follow
379 views
Uploaded On 2016-11-13

ITEC 109 - PPT Presentation

Lecture 5 Algorithms Programming Review Introduction to python What are variables What are functions How do you make a turtle move forward one spot Objectives Difference between algorithms and programs ID: 488071

move turnleft functions turtle turnleft move turtle functions program algorithm paper turn def pendown penup solution algorithms world box

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "ITEC 109" is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

Slide1

ITEC 109

Lecture 5

Algorithms / ProgrammingSlide2

Review

Introduction to python

What are variables?

What are functions?

How do you make a turtle move forward one spot?Slide3

Objectives

Difference between algorithms and programs

Solve a simple problem with python

Learn how to write functionsSlide4

Difference

Algorithm

3 eggs

1 cup water

1/3 cup vegetable oil

1 box cake mix

Mix ingredients

Pour in panPut pan in oven at 350 for 30 minutes

Program

Algorithms tell you

what to do to accomplishsomething

Programs are the result

of following an algorithm’s

instructionsSlide5

Problem

I want my newspaper

It is in a box outside

It is too hot

Solution

I have a turtle go get it for meSlide6

Algorithm

Go down 2 places

Pick up paper (Put the pen down)

Move up two spaces

Drop paperSlide7

Program

Turtle limitations

Adapt tools to match algorithm

Task: move down one space

Capabilities: turn left and move forward

Animation:

Add import time at beginning of program

Insert time.sleep(.5) after each movement

Solution: ?Slide8

Solution

Go down 2 spaces

Pick up paper

Move up two spaces

Drop paper

Algorithm

Program

w = world();

t = turtle(w);

turnLeft

(t);turnLeft

(t);

f

orward(t);

forward(t);

penDown

(t);

turnLeft

(t);

turnLeft

(t);

forward(t);

forward(t);

penUp

(

t)

;Slide9

Functions

turnLeft

(t);

turnLeft

(t);

turnLeft

(t)

;

Turning right

Why not just have the

idea of turn

right that

u

ses 3

turn lefts?

def

right(t):

turnLeft

(t);

turnLeft

(t

);

turnLeft

(t

);

right(t);right(t);

Create Once

Use many timesSlide10

Pro/Con

Pro

Hide details

Maps to algorithm

Con

Overhead

Requires thought / planning

Go down 2 spaces

Pick up paper

Move up two spacesDrop paper

AlgorithmProgramturn (t);move(t);

penDown

(t)

turn(t);

move(t);

penUp

(t)

Functions

def

turnAround

(t):

turnLeft

(t);

turnLeft

(t);

def move(t): forward(t); forward(t);Slide11

Functions

w = world();

t = turtle(w);

turnLeft

(t);

turnLeft

(t);

forward(t);

forward(t);penDown(t);

turnLeft(t);turnLeft

(t);forward(t);forward(t);penUp(t);

w = world();

t = turtle(w)

;

def

around(t):

turnLeft

(t);

turnLeft

(t)

;

def

move(t):

forward

(t);

forward

(t);around(t);move(t);penDown(t);around(t);move(t);penUp(t);

Without

With

Overhead for simple tasksBeneficial for large tasksSlide12

Homework

Write a program that uses functions

Demo on

Wed. for

credit

All turtle HW assignments count as one homework assignment grade