------
## 最终结论
```python
def strlen(string: str) -> int:
    return len(string)
```