Posts by Gabriel Albuquerque • 23 points
2 posts
-
1
votes1
answer275
viewsQ: Sort class list in Python
I have a class defined as follows:: class Cromossomo(): def __init__(self, cromossomo, comprimento): #Construtor self.cromossomo = cromossomo self.comprimento = comprimento From it I have a list of…
-
-1
votes2
answers69
viewsQ: Iterations in a tuple list
Good afternoon, I have the following problem: I have a list of tuples called list_chromosomes, with 10 positions. I want to open a new position at the end of it (11th position), where it will…