Question: Answer Correctly From the given three functions makeSunset, reduceBlue and reduceGreen; combine the code and make a single program named mySunset. [3 marks) def make
Answer Correctly

From the given three functions makeSunset, reduceBlue and reduceGreen; combine the code and make a single program named mySunset. [3 marks) def make Sunset (picture): reduceBlue (picture) reduceGreen (picture) def reduceBlue (picture): for p in getPixels (picture): value=getBlue (p) setBlue (p, value*0.7) def reduceGreen (picture): for p in getPixels (picture): value=getGreen (p) setGreen (p, value*0.7)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
