Escribí esta clase para comprimir y expandir listas de números para cadenas de secuencia, incluidos los valores de paso cuando el valor del paso es mayor que 1. El código todavía se siente torpe. ¿Hay bibliotecas que pueden hacer algo como esto? ¿Posiblemente un código más simple?Imprimir cadenas de rango numérico formateadas de una lista de números en python
import re
class Foo(object):
def __init__(self, num_list):
self.num_list = sorted(list(set([ int(n) for n in num_list ])))
# end def __init__
def gen_seq_data(self):
self.seq_data = list()
index_offset = None
backward_step_value = None
forward_step_value = None
sub_list = list()
sub_list_step_value = None
for index, num in enumerate(self.num_list):
if index - 1 < 0:
backward_step_value = None
# end if
else:
backward_step_value = num - self.num_list[ index - 1 ]
# end else
try:
forward_step_value = self.num_list[ index + 1 ] - num
# end try
except IndexError:
forward_step_value = None
# end except
if backward_step_value is None:
sub_list.append(num)
# end if
elif backward_step_value == forward_step_value:
sub_list.append(num)
if forward_step_value is None:
self.seq_data.append((sub_list_step_value, sub_list))
# end if
# end if
elif backward_step_value == sub_list_step_value:
sub_list.append(num)
if sub_list:
self.seq_data.append((sub_list_step_value, sub_list))
# end if
sub_list = list()
# end elif
else:
if sub_list:
self.seq_data.append((sub_list_step_value, sub_list))
# end if
sub_list = [ num ]
if forward_step_value is None:
self.seq_data.append((sub_list_step_value, sub_list))
# end if
# end else
try:
sub_list_step_value = sub_list[ -1 ] - sub_list[ -2 ]
# end try
except IndexError:
sub_list_step_value = None
# end except
# end for
# end def gen_seq_object
def format_elements(self):
format_elements = list()
for step, num_list in self.seq_data:
if step is None:
format_elements.append('%s' % (num_list[ 0 ]))
# end if
elif step == 1:
format_elements.append('%s-%s' % (num_list[ 0 ], num_list[ -1 ]))
# end elif
else:
format_elements.append('%s-%sx%s' % (num_list[ 0 ], num_list[ -1 ], step))
# end else
# end for
return format_elements
# end def format_range
def format_range(self):
return ','.join(self.format_elements())
# end def format_range
def expand_range(self):
num_list = list()
for r_token in self.format_range().split(','):
if r_token.isdigit():
num_list.append(int(r_token))
# end if
elif '-' in r_token:
if 'x' in r_token:
start, end, step = re.split(r'[-|x]', r_token)
num_list.extend(range(int(start), int(end) + 1, int(step)))
# end if
else:
start, end = r_token.split('-')
num_list.extend(range(int(start), int(end) + 1))
# end else
# end elif
# end for
return num_list
# end def expand_range
# end class Foo
de entrada/salida:
data = [ 1, 4, 5, 6, 10, 15, 16, 17, 18, 20, 22, 24, 26, 27, 28, 30, 35, 40, 45, 50, 56, 63, 66, 69, 72 ]
foo = Foo(data)
foo.gen_seq_data()
print data
print foo.format_range()
1,4-6,10,15-18,20-26x2,27,28,30-50x5,56,63-72x3
print foo.expand_range()
[1, 4, 5, 6, 10, 15, 16, 17, 18, 20, 22, 24, 26, 27, 28, 30, 35, 40, 45, 50, 56, 63, 66, 69, 72]
Corrija el problema indentación. Su código tiene un formato incorrecto. Por favor (1) edite la pregunta, (2) lea las instrucciones de formato en el lado derecho de la página y (3) evite publicar cada pieza de código que tenga. ¿Qué problema tienes? ¿Cuál es la pieza de código más pequeña que muestra este ** problema **? –
@ user494203: Bote las líneas "# end if" etc. son monstruosamente inútiles, especialmente los que ocurren justo antes de 'elif' y 'else'. Si haces eso, las personas pueden estar más inclinadas a leer tu código y sugerir más desambigamientos. –