cse 115
play

CSE 115 Introduction to Computer Science I Road map Review - PowerPoint PPT Presentation

CSE 115 Introduction to Computer Science I Road map Review Defining functions Calling functions Function calls as expressions Functions Calling a function The expressions 2*4 and 3-1 are 'arguments' of the function pow( 2*4 , 3-1 )


  1. CSE 115 Introduction to Computer Science I

  2. Road map ▶︎ Review ◀ Defining functions Calling functions Function calls as expressions

  3. Functions Calling a function The expressions 2*4 and 3-1 are 'arguments' of the function pow( 2*4 , 3-1 ) computes 8 2 , or 64 the name of the function is 'pow'

  4. Road map Review ▶︎ Defining functions ◀ Calling functions Function calls as expressions

  5. Defining functions We are not restricted to using built-in functions. We can define our own!

  6. Defining functions Here's an example of a function definition: def averageOfThree(x, y, z): average = (x + y + z) / 3 return average

  7. Defining functions The parts are: 'def' is a keyword def averageOfThree(x, y, z): average = (x + y + z) / 3 return average

  8. Defining functions 'averageOfThree' is a name: you get to choose this def averageOfThree(x, y, z): average = (x + y + z) / 3 return average

  9. Defining functions 'x', 'y', and 'z' are parameters. A parameter is a variable whose value is assigned (from the corresponding argument) when the function is called. def averageOfThree(x, y, z): average = (x + y + z) / 3 return average

  10. Defining functions '(x, y, z)' is a parameter list. The parentheses and commas are 'delimiters' (punctuation) def averageOfThree(x, y, z): average = (x + y + z) / 3 return average

  11. Defining functions : is also a delimiter def averageOfThree(x, y, z): average = (x + y + z) / 3 return average

  12. Defining functions : is also a delimiter It separates the header of the definition from its body def averageOfThree(x, y, z): average = (x + y + z) / 3 return average

  13. Defining functions The body is a block (sequence) of statements. These statements are carried out when the function is called. def averageOfThree(x, y, z): average = (x + y + z) / 3 return average Python refers to a block of statements as a "suite".

  14. The return statement The return statement consists of the keyword 'return' followed by an expression. def averageOfThree(x, y, z): average = (x + y + z) / 3 return average The value of the expression average is returned as the value of the function

  15. The return statement The value of the expression becomes the value of the function call. def averageOfThree(x, y, z): average = (x + y + z) / 3 return average

  16. Road map Review Defining functions ▶︎ Calling functions ◀ Function calls as expressions

  17. Calling functions What happens when this function call takes place? averageOfThree( 3, 7, 4 )

  18. Calling functions Step 1: argument values are assigned to parameters averageOfThree( 3, 7, 4 ) def averageOfThree( x, y, z ): average = (x + y + z) / 3 return average

  19. Calling functions Step 1: argument values are assigned to parameters averageOfThree( 3, 7, 4 ) def averageOfThree( x, y, z ): average = (x + y + z) / 3 return average name value 3 x We keep track of the values of variables in a table. y 7 Such a table is called an environment . z 4

  20. Calling functions Step 2: statements in body are executed in sequence averageOfThree( 3, 7, 4 ) def averageOfThree( x, y, z ): average = (x + y + z) / 3 return average name value 3 x The body of a function is a sequence of y 7 statements. z 4

  21. Calling functions Step 2a: the assignment statement is done first averageOfThree( 3, 7, 4 ) def averageOfThree( x, y, z ): average = (x + y + z) / 3 return average name value 3 x An assignment statement has the form: y 7 variable = expression z 4

  22. Calling functions Step 2a: the expression is evaluated averageOfThree( 3, 7, 4 ) def averageOfThree( x, y, z ): average = (x + y + z) / 3 return average name value 3 x To evaluate the expression, look up the values of y 7 all the variables in the environment table. z 4

  23. Calling functions Step 2a: the expression is evaluated averageOfThree( 3, 7, 4 ) def averageOfThree( x, y, z ): average = (x + y + z) / 3 return average name value 3 x (x + y + z) / 3 = y 7 z 4

  24. Calling functions Step 2a: the expression is evaluated averageOfThree( 3, 7, 4 ) def averageOfThree( x, y, z ): average = (x + y + z) / 3 return average name value 3 x (x + y + z) / 3 = y 7 (3 + 7 + 4) / 3 = z 4

  25. Calling functions Step 2a: the expression is evaluated averageOfThree( 3, 7, 4 ) def averageOfThree( x, y, z ): average = (x + y + z) / 3 return average name value 3 x (x + y + z) / 3 = y 7 (3 + 7 + 4) / 3 = z 4 14 / 3 = 4.666666666666667

  26. Calling functions Step 2a: the variable is assigned the value of the expression averageOfThree( 3, 7, 4 ) def averageOfThree( x, y, z ): average = (x + y + z) / 3 return average name value 3 x (x + y + z) / 3 = y 7 (3 + 7 + 4) / 3 = z 14 / 3 = 4.666666666666667 4

  27. Calling functions Step 2a: the variable is assigned the value of the expression averageOfThree( 3, 7, 4 ) def averageOfThree( x, y, z ): average = (x + y + z) / 3 return average name value 3 x (x + y + z) / 3 = y 7 (3 + 7 + 4) / 3 = z 14 / 3 = 4.666666666666667 4 average 4.666666666666667

  28. Calling functions Step 2b: the return statement is executed next averageOfThree( 3, 7, 4 ) def averageOfThree( x, y, z ): average = (x + y + z) / 3 return average name value 3 x A return statement has the form y 7 return expression z 4 average 4.666666666666667

  29. Calling functions Step 2b: the expression is evaluated averageOfThree( 3, 7, 4 ) def averageOfThree( x, y, z ): average = (x + y + z) / 3 return average name value 3 x The expression is simple: the value of a variable expression is simply the y 7 value associated with the variable in the current z 4 environment table. average 4.666666666666667

  30. Calling functions Step 2b: the expression is evaluated averageOfThree( 3, 7, 4 ) def averageOfThree( x, y, z ): average = (x + y + z) / 3 return average name value 3 x average = y 7 z 4 average 4.666666666666667

  31. Calling functions Step 2b: the expression is evaluated averageOfThree( 3, 7, 4 ) def averageOfThree( x, y, z ): average = (x + y + z) / 3 return average name value 3 x average = y 7 4.666666666666667 z 4 average 4.666666666666667

  32. Road map Review Defining functions Calling functions ▶︎ Function calls as expressions ◀

  33. Calling functions Step 3: the function call is an expression… averageOfThree( 3, 7, 4 )

  34. Calling functions Step 3: …whose value is the value returned by the function averageOfThree( 3, 7, 4 ) = 4.666666666666667

  35. Calling functions Another example: the value of averageOfThree( 5, 2, 8 )

  36. Calling functions Another example: the value of averageOfThree( 5, 2, 8 ) def averageOfThree( x, y, z ): average = (x + y + z) / 3 return average name value 5 x y 2 z 8

  37. Calling functions Another example: the value of averageOfThree( 5, 2, 8 ) def averageOfThree( x, y, z ): average = (x + y + z) / 3 return average name value 5 x (x + y + z) / 3 = y 2 (5 + 2 + 8) / 3 = z 8 15 / 3 = 5.0

  38. Calling functions Another example: the value of averageOfThree( 5, 2, 8 ) def averageOfThree( x, y, z ): average = (x + y + z) / 3 return average name value 5 x y 2 The value returned is 5.0 z 8 average 5.0

  39. Calling functions Another example: the value of averageOfThree( 5, 2, 8 ) is 5.0

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend