Python, delete specific names from list -
first select group named hairsystem1follicles
, make list
of make empty list
things delete
i have tried 2 things, both useless. isolate elements in list name curve1
curve2
etc. not other things in list named loftfolicle*
assuming list named "hairsystem1follicles".
try list comprehension:
isolated = [ name name in hairsystem1follicles if name != "loftfolicle" ]
Comments
Post a Comment