Loops Example: Summing the Elements of a List def sum(thelist): - - PowerPoint PPT Presentation

loops example summing the elements of a list
SMART_READER_LITE
LIVE PREVIEW

Loops Example: Summing the Elements of a List def sum(thelist): - - PowerPoint PPT Presentation

Not-So-Mini-Lecture 14 Loops Example: Summing the Elements of a List def sum(thelist): """Returns: the sum of all elements in thelist Precondition: thelist is a list of all numbers (either floats or ints)""" pass


slide-1
SLIDE 1

Loops

Not-So-Mini-Lecture 14

slide-2
SLIDE 2

Example: Summing the Elements of a List

def sum(thelist): """Returns: the sum of all elements in thelist Precondition: thelist is a list of all numbers (either floats or ints)""" pass # Stub to be implemented

9/28/18 For Loops 2

Remember our approach: Outline first; then implement

slide-3
SLIDE 3

Example: Summing the Elements of a List

def sum(thelist): """Returns: the sum of all elements in thelist Precondition: thelist is a list of all numbers (either floats or ints)""" # Create a variable to hold result (start at 0) # Add each list element to variable # Return the variable

9/28/18 For Loops 3

slide-4
SLIDE 4

Example: Summing the Elements of a List

def sum(thelist): """Returns: the sum of all elements in thelist Precondition: thelist is a list of all numbers (either floats or ints)""" result = 0 result = result + thelist[0] result = result + thelist[1] … return result

9/28/18 For Loops 4

There is a problem here

slide-5
SLIDE 5

For Loops: Processing Sequences

# Print contents of seq x = seq[0] print(x) x = seq[1] print(x) … x = seq[len(seq)-1] print(x)

  • Remember:

§ Cannot program … The for-loop: for x in seq: print(x)

  • Key Concepts

§ loop sequence: seq § loop variable: x § body: print(x) § Also called repetend

9/28/18 For Loops 5

slide-6
SLIDE 6

For Loops: Processing Sequences

The for-loop:

for x in seq: print(x)

  • loop sequence: seq
  • loop variable: x
  • body: print(x)

To execute the for-loop:

1. Check if there is a “next” element of loop sequence 2. If not, terminate execution 3. Otherwise, put the element in the loop variable 4. Execute all of the body 5. Repeat as long as 1 is true

seq has more elts put next elt in x

True False

print(x)

9/28/18 For Loops 6

slide-7
SLIDE 7

Example: Summing the Elements of a List

def sum(thelist): """Returns: the sum of all elements in thelist Precondition: thelist is a list of all numbers (either floats or ints)""" # Create a variable to hold result (start at 0) # Add each list element to variable # Return the variable

9/28/18 For Loops 7

slide-8
SLIDE 8

Example: Summing the Elements of a List

def sum(thelist): """Returns: the sum of all elements in thelist Precondition: thelist is a list of all numbers (either floats or ints)""" result = 0 for x in thelist: result = result + x return result

9/28/18 For Loops 8

  • loop sequence: thelist
  • loop variable: x
  • body: result=result+x
slide-9
SLIDE 9

Example: Summing the Elements of a List

def sum(thelist): """Returns: the sum of all elements in thelist Precondition: thelist is a list of all numbers (either floats or ints)""" result = 0 for x in thelist: result = result + x return result

9/28/18 For Loops 9

  • loop sequence: thelist
  • loop variable: x
  • body: result=result+x

Accumulator variable

slide-10
SLIDE 10

For Loops and Conditionals

def num_ints(thelist): """Returns: the number of ints in thelist Precondition: thelist is a list of any mix of types""" # Create a variable to hold result (start at 0) # for each element in the list… # check if it is an int # add 1 if it is # Return the variable

9/28/18 For Loops 10

slide-11
SLIDE 11

For Loops and Conditionals

def num_ints(thelist): """Returns: the number of ints in thelist Precondition: thelist is a list of any mix of types""" result = 0 for x in thelist: if type(x) == int: result = result+1 return result

9/28/18 For Loops 11

Body

slide-12
SLIDE 12

Modifying the Contents of a List

def add_one(thelist): """(Procedure) Adds 1 to every element in the list Precondition: thelist is a list of all numbers (either floats or ints)""" for x in thelist: x = x+1 # procedure; no return

9/28/18 For Loops 12

DOES NOT WORK!

slide-13
SLIDE 13

For Loops and Call Frames

def add_one(thelist): """Adds 1 to every elt Pre: thelist is all numb.""" for x in thelist: x = x+1 add_one(seq):

9/28/18 For Loops 13

1 2 id4 5 4 7 seq id4 add_one thelist 1 id4 1 2

slide-14
SLIDE 14

For Loops and Call Frames

def add_one(thelist): """Adds 1 to every elt Pre: thelist is all numb.""" for x in thelist: x = x+1 add_one(seq):

9/28/18 For Loops 14

1 2 id4 5 4 7 seq id4 add_one thelist 2 id4 1 2 x 5

slide-15
SLIDE 15

For Loops and Call Frames

def add_one(thelist): """Adds 1 to every elt Pre: thelist is all numb.""" for x in thelist: x = x+1 add_one(seq):

9/28/18 For Loops 15

1 2 id4 5 4 7 seq id4 add_one thelist 1 id4 1 2 x 6

Increments x in frame Does not affect folder Loop back to line 1

slide-16
SLIDE 16

For Loops and Call Frames

def add_one(thelist): """Adds 1 to every elt Pre: thelist is all numb.""" for x in thelist: x = x+1 add_one(seq):

9/28/18 For Loops 16

1 2 id4 5 4 7 seq id4 add_one thelist 2 id4 1 2 x 4

Next element stored in x. Previous calculation lost.

slide-17
SLIDE 17

For Loops and Call Frames

def add_one(thelist): """Adds 1 to every elt Pre: thelist is all numb.""" for x in thelist: x = x+1 add_one(seq):

9/28/18 For Loops 17

1 2 id4 5 4 7 seq id4 add_one thelist 1 id4 1 2 x 5

Loop back to line 1

slide-18
SLIDE 18

For Loops and Call Frames

def add_one(thelist): """Adds 1 to every elt Pre: thelist is all numb.""" for x in thelist: x = x+1 add_one(seq):

9/28/18 For Loops 18

1 2 id4 5 4 7 seq id4 add_one thelist 2 id4 1 2 x 7

Next element stored in x. Previous calculation lost.

slide-19
SLIDE 19

For Loops and Call Frames

def add_one(thelist): """Adds 1 to every elt Pre: thelist is all numb.""" for x in thelist: x = x+1 add_one(seq):

9/28/18 For Loops 19

1 2 id4 5 4 7 seq id4 add_one thelist 1 id4 1 2 x 8

Loop back to line 1

slide-20
SLIDE 20

For Loops and Call Frames

def add_one(thelist): """Adds 1 to every elt Pre: thelist is all numb.""" for x in thelist: x = x+1 add_one(seq):

9/28/18 For Loops 20

1 2 id4 5 4 7 seq id4 add_one thelist id4 1 2 x 8

Loop is completed. Nothing new put in x.

slide-21
SLIDE 21

For Loops and Call Frames

def add_one(thelist): """Adds 1 to every elt Pre: thelist is all numb.""" for x in thelist: x = x+1 add_one(seq):

9/28/18 For Loops 21

1 2 id4 5 4 7 seq id4 1 2

ERASE WHOLE FRAME

No changes to folder

slide-22
SLIDE 22

On The Other Hand

def copy_add_one(thelist): """Returns: copy with 1 added to every element Precondition: thelist is a list of all numbers (either floats or ints)""" mycopy = [] # accumulator for x in thelist: x = x+1 mycopy.append(x) # add to end of accumulator return mycopy

9/28/18 For Loops 22

Accumulator keeps result from being lost

slide-23
SLIDE 23

How Can We Modify A List?

  • Never modify loop var!
  • This is an infinite loop:

for x in thelist: thelist.append(1)

  • Need a second sequence
  • How about the positions?

thelist = [5, 2, 7, 1] thepos = [0, 1, 2, 3] for x in thepos: thelist[x] = x+1

9/28/18 For Loops 23

Try this in Python Tutor to see what happens

slide-24
SLIDE 24

How Can We Modify A List?

  • Never modify loop var!
  • This is an infinite loop:

for x in thelist: thelist.append(1)

  • Need a second sequence
  • How about the positions?

thelist = [5, 2, 7, 1] thepos = [0, 1, 2, 3] for x in thepos: thelist[x] = x+1

9/28/18 For Loops 24

Try this in Python Tutor to see what happens

slide-25
SLIDE 25

The Range Function

  • range(x)

§ Creates an iterable § Stores [0,1,…,x-1] § But not a list! § But try list(range(x))

  • range(a,b)

§ Stores [a,…,b-1]

  • range(a,b,n)

§ Stores [a,a+n,…,b-1]

  • Very versatile tool
  • Great for processing ints

total = 0 # add the squares of ints # in range 2..200 to total for x in range(2,201): total = total + x*x

9/28/18 For Loops 25

Accumulator