Author: Abdulrasaq

  • Importance of software Testing

    In a lot of solo projects testing is usually an after thought. Any team or even individual with any long term plans for a project should have test written into their code. If your projects do not have tests they are exposed to the following issue. Just because a project is small does not mean…

  • Quick one on Python random numbers sampling

    I have been working on a project to generate random data using Python. Since I am not using this project for any security application I opted for the Python pseudo-random number generator random . In order to randomly select items from a list three option presented themselves to me random.choice, random.choices and random.sample . random.choice…