I'm a begginer in python and I want to make this:
I have a string array I want to make a dictionary with string as keys, but this way: Transform this:
['Users', 'ID', 'Age']
Into this:
{
'Users': {
'ID': {
'Age': None
}
}
}