37. What would be the output of the following code written in Python:
sharks = ['hammerhead', 'great white', 'dogfish', 'frilled', 'bullhead', 'requiem']
for shark in sharks:
if shark == ‘requiem’:
print(“This shark has an interesting name!”, shark)
else:
print(“This shark is boring!”, shark)