In Python I have this kind of expression to deal with:
alg_error = self.__rec_data[seedict][scanner][CALCULATE][CALCULATE_VALUE]
or
alg_error = self.__rec_data[seedict][scanner][CALCULATE][CALCULATE_VALUE]
alg_comp = self.__rec_data[pers][dict1][DATA][DATA_DICT]
I do not understand this multiple dictionary expression at all, how does it work, what if I assign a value for example
algo_dem_error_path_comp = self.__rec_file_data[pers][scan][DATA][DATA_ERR_PATH_COMP] = "value : 5 "
Where would five go?