以下のコードの`if __name__ == "__main__":`の主な目的は何ですか? ```python def main(): print("プログラム開始") if __name__ == "__main__": main() ```