The program illustrates the use of conditional statements i.e. the if keyword
The statements that compare the boxes written in Python are as follows:
#Statement 1
if box07 > box10:
print("Box 07")
else
print("Box 10")
#Statement 2
if box21 > box23:
print("Box 21")
else
print("Box 23")
Read more about python programs at:
https://brainly.com/question/13246781
#SPJ1