Passage
Consider the following snippet of code and answer the given sub-questions that follow:
```
L = ['apple', 'banana', 'cherry', 'date', 'fig', 'grape']
max_L = []
maxLen = 0
for s in L:
if len(s) > maxLen:
maxLen = len(s)
max_L = [s]
elif len(s) == maxLen:
max_L.append(s)
print(max_L)
print(len(max_L))
```