Rearrange the following lines of code to write a function to return a modified image with the left half blacked out. Not
Posted: Mon Jun 06, 2022 5:49 pm
Rearrange the following lines of code to write a function to return a modified image with the left half blacked out. Note that you should make sure the indentation is correct! Drag from here Drop blocks here return img def black_out(img): for row in range(len (img)): img [row] [col] = (0, O 0) for col in range(len(img [row])//2):