Concept Flow - List length and membership test
Start with a list
Check length with len()
Use 'in' to test membership
Return length and membership result
We start with a list, then find its length using len(), and check if an item is in the list using 'in'. Finally, we get the results.