Mel vs Python

Mel
string $sel[] = `ls -sl`;


Python
import pymel.core as pm
sel = pm.ls(selection=True)

Comments