My program asks that, on entry, on the same line, there is a string with no spaces name, the name of the depositor, and a string that can contain spaces desc, the description of the object deposited. So, after that I create a dictionary to relate the name and the object.
Exit: Ana Blue Bag
However, as I have done, it is only possible to enter a word at the location of the object description. How do I enter more than one word in desc ??
How I did it:
dic={}
nome,desc=input().split()
dic.update({nome:desc})