i have a litle question since iam new to python, i came from php and in php iam able to define array with explicit indexes
array(
"Index1" => array(),
"Index2" => array()
);
Iam wondering if iam able to do the same thing with lists in python, for example
["Index1" => [], "Index2" => []]