给定字符串数组,输出其中最长的字符串长度
时间: 2023-07-11 18:48:52 浏览: 86
字符指针数组示例-C语言第9章_z字符串
好的,可以使用以下 Python 代码来实现:
```python
strs = ["hello", "world", "python", "machine", "learning"]
max_len = 0
for s in strs:
if len(s) > max_len:
max_len = len(s)
print(max_len)
```
输出结果为 8,表示最长的字符串长度为 8。
阅读全文