PHP has a really quick way to append a value to an array:
$array[] = 'value';
What is the easiest way to do this in python without needing an index number?
Also, is there an easy way to do this with a list nested inside a dictionary, like this PHP equivalent..
$array['associative'][] = 'value';
or