I am learning Python now. Before I am working with Perl. In Perl we have multi-level hashes for sorting the data. Are there any types like that available in Python?
For example
$hash{$date}{$Origin_Type}++;
and
$var = {
'2016-04-08' => {
GSM => 32,
SMPP => 29
}
}