# bpy.context > Note that all context values are readonly, but may be modified through the data API or by running operators | prop | | |------------------|--| | object | | | active_object | | | selected_objects | | | mode | | ## Contextオーバーライド ```py # remove all objects in scene rather than the selected ones import bpy override = bpy.context.copy() override['selected_objects'] = list(bpy.context.scene.objects) bpy.ops.object.delete(override) ```