The function counts the number of occurrences of the lowercase letter 'o' in the input string.

[CODE]:
```python
def count_lower_o(string):
    return string.count('o')
```