From 7e4e6ef0f5de9268eaf4b01b4399676518f9fbe0 Mon Sep 17 00:00:00 2001 From: Daniel Wilczak Date: Mon, 21 Sep 2020 15:33:52 -0400 Subject: [PATCH] comment fix --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 484be15..0420701 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,7 @@ ga.population.chromosomes[0].genes[0].print_value() my_chromosome = ga.population.chromosomes[0] print(f"my_chromosome: {my_chromosome.get_chromosome()}") print(f"my_chromosome fitness: {my_chromosome.get_fitness()}") + # Looking to get the data of one gene in the chromosome my_gene = ga.population.chromosomes[0].genes[0] print(f"my_gene: {my_gene.get_value()}")