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开发

  1. Python开发:目录
  2. Python开发:Python介绍
  3. Python开发:Python数据类型
  4. Python开发:Python之函数
  5. Pyhton开发:Python基础杂货铺
  6. Python开发:模块
  7. Python开发:面向对象
  8. Python开发:网络编程
  9. Python开发:HTML 
  10. Python开发:CSS 
  11. Python开发:JavaScript
  12. Python开发:DOM
  13. Python开发:jQuery
  14. Python开发:Web框架
  15. Python开发:Web框架之Tornado
  16. Python开发:AJAX
  17. Python开发:MySQL(一)
  18. Python开发:MySQL(二)
  19. Python开发:Python操作MySQL
  20. Python开发:缓存
  21. Python开发:Web框架之Django【基础】
  22. Python开发:Web框架之Django【进阶】
  23. Python开发:CMDB配置资产管理

未完待续......

 

附录:

  1. 线程池
  2. pycharm的基本操作
  3. unbutu介绍,以及基本使用
  4. pep-8要求归纳
  5. python面试题(转)
  6. 面试题解析(一)
  7. 面试题解析(二)
  8. 面试题解析(三)
  9. 面试题解析(四)

 

最后致谢:感谢在我学习之路帮助我的人

以上是关于Python 3:如何找到最长的字符串的主要内容,如果未能解决你的问题,请参考以下文章

如何找到包含两个唯一重复字符的最长子字符串

如何找到没有重复字符的最长子字符串?

如何使用树找到最长的公共子串?

如何在 TRIE 中找到最长的字符串

python-leetcode340-滑动窗口法至多包含 K 个不同字符的最长子串

如何在c程序中找到最长和最短的字符串?