Adding to other answers - another option could be to use defaultdict from collections built-in module to pre-define dream_makers values as lists, like this:
from collections import defaultdict
dream_makers = defaultdict(list)
...
dream = input("what are your dreams")
dream_makers[name].append(dream)