In a pilot, a participant used defaultdict, which takes a lambda to initialize values in a dictionary when the key isn't present.
The lambda didn't create a pleasant experience.

Suggestion:
- instead of
function <lambda> ..., perhaps print the text of the lambda function?
- instead of
function <lambda> ..., just the word lambda 1, lambda 2, where each number represents a unique function.
In a pilot, a participant used
defaultdict, which takes a lambda to initialize values in a dictionary when the key isn't present.The lambda didn't create a pleasant experience.
Suggestion:
function <lambda> ..., perhaps print the text of the lambda function?function <lambda> ..., just the wordlambda 1,lambda 2, where each number represents a unique function.