计算多个字符串中最长的字符串长度
时间: 2024-05-01 16:19:38 浏览: 77
可以使用循环遍历每个字符串并记录每个字符串的长度,然后找到其中的最大值。具体代码实现如下:
```
def longest_string_length(strings):
max_length = 0
for string in strings:
if len(string) > max_length:
max_length = len(string)
return max_length
```
调用该函数可以计算多个字符串中最长的字符串长度:
```
strings = ['abc', 'defgh', 'ijklmno']
max_length = longest_string_length(strings)
print(max_length) # 输出 7
```
请问您还有什么其他的问题吗?
阅读全文