I have a nested dictionary inside another dictionary with a key value of a date.
The value of the dictionary (inside the dictionary) is a list of 6 numbers.
How do I access the individual numbers of the list? I’ve included for you below how I formed my dictionary.
dictsee = {"dicto_{}".format(i): {'Date': dates[i], 'nums' : crapola[0+(6*i): 6+(6*i)]} for i in range(arb)}
for key, value in dictsee.items():
print(f"{key} numbers were {value}.")