Python 3:如何找到最长的字符串
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 3:如何找到最长的字符串相关的知识,希望对你有一定的参考价值。
参考技术A 以下是代码:s = 'xyzbcdezzz'longest_string = ''current_string = ''for n in range(len(s)):
if len(current_string) == 0 or current_string[-1] <= s[n]:
current_string += s[n]
print('current string:', len(current_string), current_string)
else:
if len(current_string) > len(longest_string):
longest_string = current_string
current_string = s[n]
print('the longest string checked is:', longest_string, ', count reset')if len(current_string) > len(longest_string):
longest_string = current_stringprint(longest_string)
Python开发
- Python开发:目录
- Python开发:Python介绍
- Python开发:Python数据类型
- Python开发:Python之函数
- Pyhton开发:Python基础杂货铺
- Python开发:模块
- Python开发:面向对象
- Python开发:网络编程
- Python开发:HTML
- Python开发:CSS
- Python开发:JavaScript
- Python开发:DOM
- Python开发:jQuery
- Python开发:Web框架
- Python开发:Web框架之Tornado
- Python开发:AJAX
- Python开发:MySQL(一)
- Python开发:MySQL(二)
- Python开发:Python操作MySQL
- Python开发:缓存
- Python开发:Web框架之Django【基础】
- Python开发:Web框架之Django【进阶】
- Python开发:CMDB配置资产管理
未完待续......
附录:
最后致谢:感谢在我学习之路帮助我的人
以上是关于Python 3:如何找到最长的字符串的主要内容,如果未能解决你的问题,请参考以下文章