Take the list
variable num1 = []
and say i also take num1_child = randint(0,100)
how do I go about making num1
progressively become a longer list by adding num1_child
to the list, as opposed to simply changing it's value every eteration?
(I looked at: Adding integers progressively to a list but did not fully understand how to implement that in my code)