''' Give me Python code that can import multiple OBJ into Maya 3D ''' import maya.cmds as cmds # list of OBJ file paths to import obj_files = ['/path/to/file1.obj', '/path/to/file2.obj', '/path/to/file3.obj'] # loop through the list of OBJ files and import each one into Maya for obj_file in obj_files: cmds.file(obj_file, i=True, type='OBJ', ignoreVersion=True, mergeNamespacesOnClash=False, namespace='') print("OBJ files imported successfully!")