79814402

Date: 2025-11-08 19:34:12
Score: 1
Natty:
Report link

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)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: LowpolyOllie