For the first week I have been continuing through grok tutorials and learning about python, I had some trouble in the exercise in module 8 where I had to count the number of unique names given, I had no problem with the majority of the exercise but I was unsure about how to recognise strings that are the same and not include them in the end I realised and made use of an in loop to help with the identification of similar strings. if word == '': break if not(word in words): words.append(word). this allowed me to solve the problem. I managed to get through the previous challenges with relative ease. I have almost completed the beginner grok course and will move onto the intermediate section this week considering all goes to plan. once starting on the intermediate section of the grok tutorials I will start planning the assessment task in this upcoming week through working out the processes to create the program as well as tackling any issues I might be unsure about.
This past week I've been working on fixing issues with the program to make it run as smoothly as possible. I didn't think I would get the stats for nerds page done and was going to scrap it so I could focus on getting the documentation done and fixing the minor issues so it would be more polished but I decided to do the stats for nerds page anyway and spent the past day and a half working on it. The notable issues from its development were mainly around gathering the data, in which I found some other errors in how I was collecting data such as not updating the data files when quitting the program. But i managed to finish the page as well as the rest of the program. My final solution was reasonably successful in comparison to my proposal and design, the only main things that I wasn't able to achieve was customisation of genome numbers and generation size and stuff like that, but that would have required a lot of digging through files in the libraries I was using to edit th...
Comments
Post a Comment