python 比较字符数组,取出其中最长的字符
时间: 2023-05-25 16:01:37 浏览: 142
获取最长字符串
串怎么实现?
A:可以使用Python的for循环和判断语句,遍历字符数组中的每个字符串,比较它们的长度,并保存最长的字符串。具体实现代码如下:
```
strings = ['hello', 'world', 'Python', 'CSDN']
longest = strings[0]
for s in strings:
if len(s) > len(longest):
longest = s
print(longest)
```
输出结果为:CSDN,因为它是字符数组中最长的字符串。
阅读全文