Pythonで変数axの存在をチェックする方法 hasattr()関数を使用する方法:if hasattr(obj, 'ax'): # axが存在する場合の処理 pass else: # axが存在しない場合の処理 pass>>More