Hey all, excited to be here! 

I'm new at this and am looking for a way to dig into the items of a list or properties of a dictionary entry. I'm probably missing something as a Python novice. Usually, I'll do something like algorithm.Log(coarse[0]) to see a list of object properties in JavaScript but I'm striking out accomplishing this in Python. The error I keep running into is…

Runtime Error: TypeError : 'filter' object is not subscriptable
at SelectCoarse
algorithm.Log(str(coarse[0]))

The docs are great but I'd like to be able to log object properties and see what's available at a glance. Does anyone know how I could go about doing that? 

Thanks for the help! 

 

 

Author