import bpy
# Get the camera object
camera = bpy.data.objects.get("Camera")
# If the camera exists, set its location to (0, 0, 0)
if camera:
camera.location = (0, 0, 0)
This script will find the camera object in the scene (assuming it is named "Camera") and set its location to (0, 0, 0). If there is a camera in the scene, it will be moved to the specified position.