欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

字符串压缩(游程编码)

程序员文章站 2024-03-14 14:03:46
...
写的比较麻烦
  1. def yasuo(str1):
  2. list1=list(str1);
  3. len1=len(list1);
  4. for s in list1:
  5. n=0;
  6. for i in range(len1):
  7. if(list1[i]==s):
  8. n+=1;
  9. list1[i]=’ ‘;
  10. if(s==’ ‘):
  11. continue;
  12. else:
  13. print(s,n,end=,sep=)
  14. str3=input(‘输入一个’);
  15. yasuo(str3);

转载:https://blog.csdn.net/ybp1137287436/article/details/79479249

相关标签: 字符串压缩