Number of entries in a list

What’s the easiest way to find out the number of entries in a list?

Al

A list component?

myListComponent.data.rowCount

… or a python list?

len(myList)

Thanks Carl. I’m going to have to stop developing late at night :slight_smile:

Al

No problem, I’ve been there!