以下のコードで`break`文の役割は何ですか? ```python prices = [800, 1200, 600, 900] target = 600 for price in prices: if price == target: print("見つかりました") break print(f"チェック中: {price}") ```