I have a fairly long list in python which I want to return parts of it in a single, shorter list based on 3 percentages. If the first percentage was 30%, it would need to return the first 30% of the values and if the 3rd percentage was 50% it would need to return the last half of the values of my long list.
This is what I have so far, it has issues with rounding and is an ugly solution
class OM():
def __init__(self,name):
self.name = name
self.total = 120
self.a = 21
self.b = 34
self.c = 65
def hRange(self,action):
if self.total > 0:
a_perc = int(self.a / float(self.total) *169)
b_perc = int(self.b / float(self.total) *169)
c_perc = int(self.c / float(self.total) *169)
if action=='a': return lst[:aperc]
elif action=='b': return lst[a_perc:a_perc+b_perc]
elif action=='c': return lst[-c_perc:]
else:
raise Exception
I realise this isn't well coded at all, (hard coded the lst length as 169, doesn't catch different actions etc etc) I just wanted to help explain what I was trying to do.
In my actual implementation the values total,a,b,c would be initialised at 0 and another method would update them, as they're just tallys. I just set them as some random values here so the code returns percentages.
I would be hugely appreciative if anyone could give me any advice on how to go about doing this a better way.