首页 > 编程 > Python > 正文

python判断列表的连续数字范围并分块的方法

2020-02-15 23:42:13
字体:
来源:转载
供稿:网友

情况一:列表中的数字是连续数字(从小到大)

from itertools import groupbylst = [1, 2, 3, 5, 6, 7, 8, 11, 12, 13, 19]  # 连续数字fun = lambda x: x[1]-x[0]for k, g in groupby(enumerate(lst), fun):  l1 = [j for i, j in g]  # 连续数字的列表  if len(l1) > 1:    scop = str(min(l1)) + '-' + str(max(l1))  # 将连续数字范围用"-"连接  else:    scop = l1[0]  print("连续数字范围:{}".format(scop))

情况二:列表中的数字是非连续数字,需将列表中的数据排序

# 冒泡排序(从小到大)lst = [4, 2, 1, 5, 6, 7, 8, 11, 12, 13, 19]for i in range(len(lst)):  j = i+1  for j in range(len(lst)):    if lst[i] < lst[j]:      x = lst[i]      lst[i] = lst[j]      lst[j] = xprint("排序后列表:{}".format(lst))

以上这篇python判断列表的连续数字范围并分块的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持武林站长站。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表