Why are we using the loop
for face in faces[-1:]:
According to sir we need to extract the largest face in the ascending ordered list of faces so we are using this with [-1:] but we can also directly select the face as
face=faces[-1]
What is the logic for using the loop here?
