Hi I am wondering is it possible to return dict in one line of this code ?
languages = {}
for folder_with_languages in folders_with_languages:
name, files = get_files_from_dir(folder_with_languages)
languages[name] = files
I was trying really bad , I could not manage it