What does water_supply = 100 do in Python?
water_supply = 100
Binds the name water_supply to the integer value 100.
water_supply
100
Creates a value that Python prevents from changing.
Immediately prints 100 to the terminal.
Compares water_supply with 100.