I have little experience in PHP and I have to convert a php script to python. I couldn't understand what exactly these lines do in the code:
$vars = array();
$vars['a'] = array();
$vars['b'] = array();
$vars['b'][] = 'text1';
What does the last line stand for? And what would happen if I add the line below to the code?
$vars['b'][] = 'text2';
I would appreciate help also on converting this to python. Thanks a lot,