python 实现list或string按指定分段
更新时间:2019年12月25日 10:05:54 作者:chao_to_change
今天小编就为大家分享一篇python 实现list或string按指定分段,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
我就废话不多说了,直接上代码吧!
#方法一 def list_cut(mylist,count): length=len(mylist) merchant=length//count re_merchant=merchant+1*(0 if length%count==0 else 1) begin=0 result_list = [] while (count>0): result_list.append(mylist[begin:begin+re_merchant]) begin=begin+re_merchant count=count-1 return result_list mylist=[1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8] hello=list_cut(mylist,5)
#方法二 def list_cut2(mylist,count): length = len(mylist) merchant = length // count re_merchant = merchant + 1 * (0 if length % count == 0 else 1) print(re_merchant) return [mylist[i:i+re_merchant] for i in range(0,length,re_merchant)] hello2=list_cut2(mylist,6)
以上这篇python 实现list或string按指定分段就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
- Python 的 f-string 可以连接字符串与数字的原因解析
- 详解Python中string模块除去Str还剩下什么
- Python字符串格式化f-string多种功能实现
- Python bytes string相互转换过程解析
- Python3中的f-Strings增强版字符串格式化方法
- python3格式化字符串 f-string的高级用法(推荐)
- 一文了解python 3 字符串格式化 F-string 用法
- Python 格式化输出_String Formatting_控制小数点位数的实例详解
- Python StringIO如何在内存中读写str
- Python序列对象与String类型内置方法详解
- 详解python3中用HTMLTestRunner.py报ImportError: No module named ''StringIO''如何解决
- Python解析json时提示“string indices must be integers”问题解决方法
- Python将string转换到float的实例方法
- python f-string式格式化听语音流程讲解
- Python格式化字符串f-string概览(小结)
- Python的文本常量与字符串模板之string库
最新评论