Continue to use the Dogs.csv data set to search for the lowest value in the maximum weight column. Modify the existing program that finds the largest weight, so that it finds the lowest weight instead. When you are done the program should output the following result.
The lowest dog weight is 7
Coding:
Hotkey Shortcuts
Move BlocksUP or DOWN or TAB
Run Program ALT + SHIFT + R
Stop Program ALT + SHIFT + S
Hide Tray ALT + SHIFT + X
Zoom In ALT + +
Zoom Out ALT + -
Open Help ALT + SHIFT + H
Navigate to Tray ALT + 1
Navigate to Blocks ALT + 2
Enter Navigation Mode SHIFT + ENTER
Blocks
Hint
Great job!
Try again
Begin by changing the variable name, max, to a meaningful name like min. Then, consider what value the min variable will start at. It can't be 0 because it's not in the column. Be sure to start with a value in the column. Next, change the if block to compare the value and min to decide if the new value is less than the current minimum. Finally, update the output statement.