Functions - Tom Kleen

Step 4: Under the documentation for declaring variables, declare your variables and initialize them to 0. The array/list should be declared as follows: pints = [0] * 7. Step 5: Write a function call to the getPints function and pass it pints. The function will return pints, so set it equal to the function call. This should be done as follows: ................
................