Lab Quiz
Take today's brief quiz at Zylab 4.27, which is similar to the quiz from last lab a week ago.
Lab Activity
In the Lab 3 shared Google slides document write your name down on a slide with two other group members. Talk with each other to create a single solution, where one group member does screen-sharing. Write Python code to read in some input numbers (followed by -1 to indicate the end of the input). The starter code to do this is:
With the input numbers do the following. Be sure to share your solution with each other so that each group member can themselves individually submit the group's solution. Put all three of your names at the top of your solution code.
( 1 point) Find and display how many input numbers there were, excluding -1. Work on this at Zylab 5.36 Lab 3a: Count input numbers
(1 point) Find and display the average of the input numbers. Work on this at 5.37 Lab 3b: Avg of input numbers
(Extra Credit point) Find and display the minimum of the input numbers. Work on this at 5.38 Lab 3c: Min of input numbers