Which statement will result in an IndentationError.

for item in shopping_list:
print(item)
for item in shopping_list:
print(item)

The statement with the unindented print(item) statement will result in an IndentationError.